Skip to content

Commit 7ca3aad

Browse files
shahor02noferini
authored andcommitted
Suppress excessive logging in the TrackMethods used by TPC QC
1 parent fc78c97 commit 7ca3aad

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Detectors/GlobalTracking/include/GlobalTracking/TrackMethods.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ class TrackMethods
3333
const o2::tpc::ClusterNativeAccess& tpcClusAcc,
3434
uint8_t& shared, uint8_t& found, uint8_t& crossed)
3535
{
36-
LOGP(info, "tpcClusRefs {}/{}", (void*)tpcClusRefs.data(), tpcClusRefs.size());
37-
LOGP(info, "tpcClusShMap {}/{}", (void*)tpcClusShMap.data(), tpcClusShMap.size());
38-
LOGP(info, " tpcClusAcc{}/{}", (void*)tpcClusAcc.clustersLinear, tpcClusAcc.nClustersTotal);
36+
LOGP(debug, "tpcClusRefs {}/{}", (void*)tpcClusRefs.data(), tpcClusRefs.size());
37+
LOGP(debug, "tpcClusShMap {}/{}", (void*)tpcClusShMap.data(), tpcClusShMap.size());
38+
LOGP(debug, "tpcClusAcc {}/{}", (void*)tpcClusAcc.clustersLinear, tpcClusAcc.nClustersTotal);
3939
constexpr int maxRows = 152;
4040
constexpr int neighbour = 2;
4141
std::array<bool, maxRows> clMap{}, shMap{};
@@ -93,4 +93,4 @@ class TrackMethods
9393
};
9494
} // namespace o2
9595

96-
#endif
96+
#endif

0 commit comments

Comments
 (0)