Skip to content

Commit

Permalink
cleaner numbers/units
Browse files Browse the repository at this point in the history
  • Loading branch information
cbielow committed Aug 25, 2023
1 parent 38b78cd commit 835f116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openms/source/CONCEPT/ProgressLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ namespace OpenMS
String IO_stats;
if (bytes_processed)
{
IO_stats = ", " + bytesToHumanReadable(bytes_processed / stop_watch_.getClockTime()) + "/sec";
IO_stats = " @ " + bytesToHumanReadable(bytes_processed / stop_watch_.getClockTime()) + "/s";
}
cout << '\r' << string(2 * current_recursion_depth, ' ') << "-- done [took " << StopWatch::toString(stop_watch_.getCPUTime()) << " (CPU), " << StopWatch::toString(stop_watch_.getClockTime()) << " (Wall)" << IO_stats << "] -- " << endl;
}
Expand Down

0 comments on commit 835f116

Please sign in to comment.