Skip to content

Commit 6593894

Browse files
aphecetchesawenzel
authored andcommitted
MCH: change level of some (pre)clustering messages from error to info
So they do not pollute the infologger at pt2. Exact reason for the preclustering message being investigated meanwhile.
1 parent 768cbba commit 6593894

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Detectors/MUON/MCH/Clustering/src/ClusterFinderOriginal.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1288,7 +1288,7 @@ void ClusterFinderOriginal::cleanPixelArray(double threshold, std::vector<double
12881288
}
12891289
}
12901290
if (iNeighbour < 0) {
1291-
LOG(error) << "There is no pixel above the threshold!?";
1291+
LOG(info) << "There is no pixel above the threshold!?";
12921292
continue;
12931293
}
12941294

Detectors/MUON/MCH/PreClustering/src/PreClusterFinder.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void PreClusterFinder::loadDigit(const Digit& digit)
138138

139139
// check that the pad is not already fired
140140
if (de.mapping->pads[iPad].useMe) {
141-
LOG(error) << "multiple digits on the same pad (DE " << digit.getDetID() << ", pad " << iPad << ")";
141+
LOG(info) << "multiple digits on the same pad (DE " << digit.getDetID() << ", pad " << iPad << ")";
142142
return;
143143
}
144144

0 commit comments

Comments
 (0)