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:
dave-mccowan 2024-07-21 23:03:00 -04:00 committed by GitHub
parent 72eeeec024
commit 7f7e6ca1e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}