Skip to content

Commit

Permalink
Change logging for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
chiarazampolli authored and sawenzel committed Nov 29, 2023
1 parent ad03088 commit e2e23f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataFormats/Detectors/CTP/src/Scalers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ std::pair<double, double> 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 {

Expand Down

0 comments on commit e2e23f2

Please sign in to comment.