Skip to content

Commit

Permalink
demoted to LogDebug
Browse files Browse the repository at this point in the history
  • Loading branch information
khaosmos93 committed Oct 4, 2022
1 parent e7236db commit 5aee77c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ MuonCandidate::CandidateContainer GlobalTrajectoryBuilderBase::build(const Track
if (!refitted0.empty())
tkTrajectory = std::make_unique<Trajectory>(*(refitted0.begin()));
else
edm::LogWarning(theCategory) << " Failed to load tracker track trajectory";
LogDebug(theCategory) << " Failed to load tracker track trajectory";
} else
tkTrajectory = it->releaseTrackerTrajectory();
if (tkTrajectory)
Expand Down Expand Up @@ -263,7 +263,7 @@ MuonCandidate::CandidateContainer GlobalTrajectoryBuilderBase::build(const Track
if (!refitted0.empty()) {
tkTrajectory = std::make_unique<Trajectory>(*(refitted0.begin()));
} else
edm::LogWarning(theCategory) << " Failed to load tracker track trajectory";
LogDebug(theCategory) << " Failed to load tracker track trajectory";
} else
tkTrajectory = it->releaseTrackerTrajectory();
std::unique_ptr<Trajectory> cpy;
Expand Down

0 comments on commit 5aee77c

Please sign in to comment.