Skip to content

Commit a84abb6

Browse files
committed
Log messages should not have newline
1 parent 97222fd commit a84abb6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Detectors/ITSMFT/ITS/tracking/src/Tracker.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void Tracker::clustersToTracks(std::function<void(std::string s)> logger, std::f
7373
std::stringstream sstream;
7474
if (constants::DoTimeBenchmarks) {
7575
sstream << std::setw(2) << " - "
76-
<< "Timeframe " << mTimeFrameCounter++ << " processing completed in: " << total << "ms" << std::endl;
76+
<< "Timeframe " << mTimeFrameCounter++ << " processing completed in: " << total << "ms";
7777
}
7878
logger(sstream.str());
7979

@@ -100,7 +100,7 @@ void Tracker::clustersToTracksGPU(std::function<void(std::string s)> logger)
100100
std::stringstream sstream;
101101
if (constants::DoTimeBenchmarks) {
102102
sstream << std::setw(2) << " - "
103-
<< "Timeframe " << mTimeFrameCounter++ << " GPU processing completed in: " << total << "ms" << std::endl;
103+
<< "Timeframe " << mTimeFrameCounter++ << " GPU processing completed in: " << total << "ms";
104104
}
105105
logger(sstream.str());
106106

0 commit comments

Comments
 (0)