diff --git a/src/openms/source/CONCEPT/ProgressLogger.cpp b/src/openms/source/CONCEPT/ProgressLogger.cpp index 855a54da5ee..7e8502e1489 100644 --- a/src/openms/source/CONCEPT/ProgressLogger.cpp +++ b/src/openms/source/CONCEPT/ProgressLogger.cpp @@ -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; }