mirror of https://github.com/apache/nifi.git
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:
parent
668a64cd56
commit
5b82b735ab
|
@ -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()) {
|
||||
|
|
Loading…
Reference in New Issue