Skip to content

Commit 1a546a2

Browse files
committed
Fix InfoLogger messages, it does not show '#' correctly
1 parent 72ec5cb commit 1a546a2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Detectors/CTF/workflow/src/CTFReaderSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ void CTFReaderSpec::processTF(ProcessingContext& pc)
292292
mLastSendTime = tNow;
293293
}
294294
tNow = std::chrono::time_point_cast<std::chrono::microseconds>(std::chrono::system_clock::now()).time_since_epoch().count();
295-
LOGP(info, "Read CTF#{} {} in {:.3f} s, {:.4f} s elapsed from previous CTF", mCTFCounter, entryStr, mTimer.CpuTime() - cput, 1e-6 * (tNow - mLastSendTime));
295+
LOGP(info, "Read CTF {} {} in {:.3f} s, {:.4f} s elapsed from previous CTF", mCTFCounter, entryStr, mTimer.CpuTime() - cput, 1e-6 * (tNow - mLastSendTime));
296296
mLastSendTime = tNow;
297297
mCTFCounter++;
298298
}

Detectors/CTF/workflow/src/CTFWriterSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ void CTFWriterSpec::run(ProcessingContext& pc)
401401
szCTF += processDet<o2::fdd::CTF>(pc, DetID::FDD, header, mCTFTreeOut.get());
402402
szCTF += processDet<o2::ctp::CTF>(pc, DetID::CTP, header, mCTFTreeOut.get());
403403
if (mReportInterval > 0 && (mTimingInfo.tfCounter % mReportInterval) == 0) {
404-
LOGP(important, "CTF#{} size report:{}", mTimingInfo.tfCounter, mSizeReport);
404+
LOGP(important, "CTF {} size report:{}", mTimingInfo.tfCounter, mSizeReport);
405405
}
406406

407407
mTimer.Stop();

0 commit comments

Comments
 (0)