Skip to content

Commit

Permalink
Demote "could not find the file" log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
knopers8 authored Nov 1, 2024
1 parent e1052ca commit 41e2485
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Framework/src/Triggers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ TriggerFcn NewObject(const std::string& databaseUrl, const std::string& database
const auto& objects = listing.get_child("objects");
if (objects.empty()) {
// We don't make a fuss over it, because we might be just waiting for the first version of such object.
// It should not happen often though, so having a warning makes sense.
ILOG(Warning, Devel) << "Could not find the file '" << fullObjectPath << "' in the db '"
<< databaseUrl << "' for given Activity settings (" << activity << "). Zeroes and empty strings are treated as wildcards." << ENDM;
// Apparently it happens always for a few iterations at SOR, so Warnings might be too annoying.
ILOG(Debug, Devel) << "Could not find the file '" << fullObjectPath << "' in the db '"
<< databaseUrl << "' for given Activity settings (" << activity << "). Zeroes and empty strings are treated as wildcards." << ENDM;
return gInvalidValidityInterval;
} else if (objects.size() > 1) {
ILOG(Warning, Support) << "Expected just one metadata entry for object '" << fullObjectPath << "'. Trying to continue by using the first." << ENDM;
Expand Down

0 comments on commit 41e2485

Please sign in to comment.