Skip to content

Commit be92b95

Browse files
committed
CTF: Print also the total size in size report
1 parent 9a1ce0e commit be92b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/CTF/workflow/src/CTFWriterSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ void CTFWriterSpec::run(ProcessingContext& pc)
494494
szCTF += processDet<o2::fdd::CTF>(pc, DetID::FDD, header, mCTFTreeOut.get());
495495
szCTF += processDet<o2::ctp::CTF>(pc, DetID::CTP, header, mCTFTreeOut.get());
496496
if (mReportInterval > 0 && (mTimingInfo.tfCounter % mReportInterval) == 0) {
497-
LOGP(important, "CTF {} size report:{}", mTimingInfo.tfCounter, mSizeReport);
497+
LOGP(important, "CTF {} size report:{} - Total:{}", mTimingInfo.tfCounter, mSizeReport, fmt::group_digits(szCTF));
498498
}
499499

500500
mTimer.Stop();

0 commit comments

Comments
 (0)