Skip to content

Commit 69b2494

Browse files
authored
Fix typo in time formatting for logs (#336)
1 parent db773fd commit 69b2494

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utility/logging.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ end
9292

9393
function format_time(t::Float64)
9494
return t < 60 ? @sprintf("%0.2f sec", t) :
95-
t < 2600 ? @sprintf("%0.2f min", t / 60) :
95+
t < 3600 ? @sprintf("%0.2f min", t / 60) :
9696
@sprintf("%0.2f hr", t / 3600)
9797
end
9898

0 commit comments

Comments
 (0)