From e2e23f291368c9edcfcf3a162b9df8de920d2d91 Mon Sep 17 00:00:00 2001 From: Chiara Zampolli Date: Tue, 28 Nov 2023 22:28:55 +0100 Subject: [PATCH] Change logging for readability --- DataFormats/Detectors/CTP/src/Scalers.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataFormats/Detectors/CTP/src/Scalers.cxx b/DataFormats/Detectors/CTP/src/Scalers.cxx index fb58550b97d81..c444f7122c31b 100644 --- a/DataFormats/Detectors/CTP/src/Scalers.cxx +++ b/DataFormats/Detectors/CTP/src/Scalers.cxx @@ -742,7 +742,7 @@ std::pair CTPRunScalers::getRateGivenT(double timestamp, int cla }; if (nextindex == 0 || nextindex == mScalerRecordO2.size()) { // orbit is out of bounds - LOG(info) << "query timestamp " << timestamp << " out of bounds; Just returning the global rate"; + LOG(info) << "query timestamp " << (long)timestamp << " out of bounds; Just returning the global rate"; return std::make_pair(/*global mean rate*/ calcRate(0, mScalerRecordO2.size() - 1), /* current rate */ -1); } else {