Skip to content

Commit

Permalink
fix: Change WARNING to DEBUG for CKF No tracks found (#2719)
Browse files Browse the repository at this point in the history
If using a stopper, one can correctly have seeds with no tracks found. This should not be a `WARNING`.
  • Loading branch information
timadye authored Nov 24, 2023
1 parent f32f90f commit 33c94a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ class CombinatorialKalmanFilter {
// Return error if filtering finds no tracks
if (result.lastTrackIndices.empty()) {
// @TODO: Tracks like this should not be in the final output!
ACTS_WARNING("No tracks found");
ACTS_DEBUG("No tracks found");
result.finished = true;
} else {
if (!smoothing) {
Expand Down

0 comments on commit 33c94a6

Please sign in to comment.