NIFI-4106 Increase log level of user authentication rejection to warn.

This closes #1934.

Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
Niels Zeilemaker 2017-06-22 16:17:02 +02:00 committed by Andy LoPresto
parent 668a64cd56
commit 5b82b735ab
No known key found for this signature in database
GPG Key ID: 6EC293152D90B61D
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public abstract class NiFiAuthenticationFilter extends GenericFilterBean {
}
// log the failure
log.info(String.format("Rejecting access to web api: %s", ae.getMessage()));
log.warn(String.format("Rejecting access to web api: %s", ae.getMessage()));
// optionally log the stack trace
if (log.isDebugEnabled()) {