Skip to content

Commit

Permalink
reduce verbose log
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelandis committed Sep 26, 2023
1 parent bc9b2ee commit 7e9d46c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,9 @@ private void getMappings(ActionListener<List<ExpressionRoleMapping>> listener) {
if (securityIndex.isAvailable()) {
loadMappings(listener);
} else {
logger.info("The security index is not yet available - no role mappings can be loaded");
if (logger.isDebugEnabled()) {
logger.debug(
"Security Index [{}] [exists: {}] [available: {}]",
"The security index is not yet available - no role mappings can be loaded. index [{}] [exists: {}] [available: {}]",
SECURITY_MAIN_ALIAS,
securityIndex.indexExists(),
securityIndex.isAvailable()
Expand Down

0 comments on commit 7e9d46c

Please sign in to comment.