Skip to content

Commit

Permalink
demote warn to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pdowler committed Aug 29, 2024
1 parent 4c9ff4e commit bd13163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cadc-rest/src/main/java/ca/nrc/cadc/rest/RestServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -479,10 +479,10 @@ static void setAuthenticateHeaders(Subject subject, String realm, SyncOutput out
return;

} else {
log.warn("adding challenges for " + im.getClass().getName());
log.debug("adding challenges for " + im.getClass().getName());
for (URI sm : im.getSecurityMethods()) {
String challenge = SEC_METHOD_CHALLENGES.get(sm);
log.warn(sm + " -> " + challenge);
log.debug(sm + " -> " + challenge);
if (challenge != null) {
// TODO: check System.getProperty(CERT_HEADER_ENABLE) aka trust ingress to do client cert validation?
// TODO: check for duplicate challenges (map does contain them)?
Expand Down

0 comments on commit bd13163

Please sign in to comment.