Skip to content

Commit

Permalink
Log message
Browse files Browse the repository at this point in the history
  • Loading branch information
n1v0lg committed Aug 8, 2023
1 parent 3ffedab commit 75a2e87
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1908,11 +1908,12 @@ public void getApiKeys(
ActionListener.wrap(apiKeyInfos -> {
if (apiKeyInfos.isEmpty()) {
logger.debug(
"No api keys found for realms {}, user [{}], api key name [{}] and api key ids {}",
"No api keys found for realms {}, user [{}], api key name [{}], api key ids {}, and active_only flag [{}]",
Arrays.toString(realmNames),
username,
apiKeyName,
Arrays.toString(apiKeyIds)
Arrays.toString(apiKeyIds),
activeOnly
);
listener.onResponse(GetApiKeyResponse.emptyResponse());
} else {
Expand Down

0 comments on commit 75a2e87

Please sign in to comment.