mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
improve elapsed time readability for large numbers.
This commit is contained in:
parent
94ebad3854
commit
024cf58c05
1 changed files with 1 additions and 1 deletions
|
|
@ -885,7 +885,7 @@ Session::save_state (string snapshot_name, bool pending, bool switch_to_snapshot
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
const int64_t elapsed_time_us = g_get_monotonic_time() - save_start_time;
|
const int64_t elapsed_time_us = g_get_monotonic_time() - save_start_time;
|
||||||
cerr << "saved state in " << setprecision (1) << elapsed_time_us / 1000. << " ms\n";
|
cerr << "saved state in " << fixed << setprecision (1) << elapsed_time_us / 1000. << " ms\n";
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue