Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

O2-5483 Demote "could not find the file" log to debug #2467

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading