mirror of https://github.com/apache/druid.git
Fix excessive logging from druid-basic-security (#16767)
Fixes #16766 Change log level from INFO to DEBUG when processing an empty user map during polling. An empty user map is a normal situation for some authenticators (e.g. LDAP) and polling is frequent (1 minute by default.)
This commit is contained in:
parent
72eeeec024
commit
7f7e6ca1e5
|
@ -267,7 +267,7 @@ public class CoordinatorPollingBasicAuthenticatorCacheManager implements BasicAu
|
|||
writeUserMapToDisk(prefix, userMapBytes);
|
||||
}
|
||||
} else {
|
||||
LOG.info("Empty cached serialized user map retrieved, authenticator - %s", prefix);
|
||||
LOG.debug("Empty cached serialized user map retrieved, authenticator - %s", prefix);
|
||||
}
|
||||
return userMap;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue