Skip to content

Commit 3247daf

Browse files
committed
Remove verbosity
1 parent c618759 commit 3247daf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,13 +362,13 @@ struct OnTheFlyTofPid {
362362
}
363363
float x, y, z;
364364
if (!track.getXatLabR(layerRadius, x, magField)) {
365-
LOG(warning) << "Could not propagate track to TOF layer at radius " << layerRadius << " cm";
365+
LOG(debug) << "Could not propagate track to TOF layer at radius " << layerRadius << " cm";
366366
return false;
367367
}
368368
bool b;
369369
ROOT::Math::PositionVector3D hit = track.getXYZGloAt(x, magField, b);
370370
if (!b) {
371-
LOG(warning) << "Could not get hit position at radius " << layerRadius << " cm";
371+
LOG(debug) << "Could not get hit position at radius " << layerRadius << " cm";
372372
return false;
373373
}
374374
hit.GetCoordinates(x, y, z);

0 commit comments

Comments
 (0)