Skip to content

Commit

Permalink
Bump logging level of exceptions to warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbockelm committed Apr 30, 2022
1 parent 43ecaea commit 9848531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdSciTokens/XrdSciTokensAccess.cc
Expand Up @@ -419,7 +419,7 @@ class XrdAccSciTokens : public XrdAccAuthorize, public XrdSciTokensHelper
m_log.Log(LogMask::Debug, "Access", "New valid token", access_rules->str().c_str());
}
} catch (std::exception &exc) {
m_log.Log(LogMask::Info, "Access", "Error generating ACLs for authorization", exc.what());
m_log.Log(LogMask::Warning, "Access", "Error generating ACLs for authorization", exc.what());
return OnMissing(Entity, path, oper, env);
}
std::lock_guard<std::mutex> guard(m_mutex);
Expand Down

0 comments on commit 9848531

Please sign in to comment.