Repository: nifi
Updated Branches:
  refs/heads/master 668a64cd5 -> 5b82b735a


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

This closes #1934.

Signed-off-by: Andy LoPresto <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/5b82b735
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/5b82b735
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/5b82b735

Branch: refs/heads/master
Commit: 5b82b735ab88e13e7d1bd1dc103912ecb873d226
Parents: 668a64c
Author: Niels Zeilemaker <[email protected]>
Authored: Thu Jun 22 16:17:02 2017 +0200
Committer: Andy LoPresto <[email protected]>
Committed: Thu Jun 22 14:03:25 2017 -0400

----------------------------------------------------------------------
 .../org/apache/nifi/web/security/NiFiAuthenticationFilter.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/5b82b735/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-security/src/main/java/org/apache/nifi/web/security/NiFiAuthenticationFilter.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-security/src/main/java/org/apache/nifi/web/security/NiFiAuthenticationFilter.java
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-security/src/main/java/org/apache/nifi/web/security/NiFiAuthenticationFilter.java
index d158b9b..ec41ebf 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-security/src/main/java/org/apache/nifi/web/security/NiFiAuthenticationFilter.java
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-security/src/main/java/org/apache/nifi/web/security/NiFiAuthenticationFilter.java
@@ -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()) {

Reply via email to