Skip to content

Commit 0e07c32

Browse files
committed
Reduce verbosity of ctpRateFetcher for trigger classes not being found
1 parent 26c07a1 commit 0e07c32

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/CCDB/ctpRateFetcher.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ double ctpRateFetcher::fetch(o2::ccdb::BasicCCDBManager* ccdb, uint64_t timeStam
4747
} else {
4848
double_t ret = fetchCTPratesClasses(ccdb, timeStamp, runNumber, "CMTVX-B-NOPF");
4949
if (ret < 0.) {
50-
LOG(info) << "Trying different class";
50+
LOG(debug) << "Trying different class";
5151
ret = fetchCTPratesClasses(ccdb, timeStamp, runNumber, "CMTVX-NONE");
5252
if ((ret < 0) && fCrashOnNull) {
5353
LOG(fatal) << "None of the classes used for lumi found";
@@ -72,7 +72,7 @@ double ctpRateFetcher::fetchCTPratesClasses(o2::ccdb::BasicCCDBManager* /*ccdb*/
7272
}
7373
}
7474
if (classIndex == -1) {
75-
LOG(warn) << "Trigger class " << className << " not found in CTPConfiguration";
75+
LOG(debug) << "Trigger class " << className << " not found in CTPConfiguration";
7676
return -1.;
7777
}
7878
auto rate{mScalers->getRateGivenT(timeStamp * 1.e-3, classIndex, inputType, 1)};

0 commit comments

Comments
 (0)