Skip to content

Commit

Permalink
Merge pull request #39602 from khaosmos93/125X_MUO_suppressWarning
Browse files Browse the repository at this point in the history
[Backport 125X] [MUO] Suppress excessive warnings in muon tracking at HLT
  • Loading branch information
cmsbuild committed Oct 10, 2022
2 parents 8c17e00 + 5aee77c commit 79225e0
Showing 1 changed file with 2 additions and 2 deletions.
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 79225e0

Please sign in to comment.