We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db773fd commit 69b2494Copy full SHA for 69b2494
1 file changed
src/utility/logging.jl
@@ -92,7 +92,7 @@ end
92
93
function format_time(t::Float64)
94
return t < 60 ? @sprintf("%0.2f sec", t) :
95
- t < 2600 ? @sprintf("%0.2f min", t / 60) :
+ t < 3600 ? @sprintf("%0.2f min", t / 60) :
96
@sprintf("%0.2f hr", t / 3600)
97
end
98
0 commit comments