logs modified

This commit is contained in:
lucio 2024-05-16 11:10:58 +02:00
parent 7f446b680c
commit f4ae6f1fd6
1 changed files with 2 additions and 2 deletions

View File

@ -125,9 +125,9 @@ public class RequestValidator extends RequestHandler {
secret = factory.create(call.request());
break;
} catch (SecretNotFoundException e) {
log.info("authorization with secret {} not found", factory.getSecretClass().getName());
log.info("authorization for secret {} not found", factory.getSecretClass().getName());
} catch (Throwable t) {
log.warn("generic error with secret {}", factory.getSecretClass().getName(), t);
log.warn("generic error creating secret {}", factory.getSecretClass().getName(), t);
}
}