Skip to content

Commit

Permalink
Merge pull request #207 from Aiven-Open/jeqo/debug-reloading
Browse files Browse the repository at this point in the history
chore: change log level to debug when reloading
  • Loading branch information
giuseppelillo authored Oct 16, 2024
2 parents 0e175d1 + 383d4e7 commit 6dabd23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public final List<AuthorizationResult> authorize(final AuthorizableRequestContex
* Read ACL entries from config file.
*/
private List<AivenAcl> loadAcls(final AclJsonReader jsonReader) {
LOGGER.info("Reloading ACL configuration...");
LOGGER.debug("Reloading ACL configuration...");
try {
return jsonReader.read();
} catch (final JsonReaderException ex) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void configure(final Map<String, ?> configs,
final List<AppConfigurationEntry> jaasConfigEntries) {
configFileLocation = JaasContext.configEntryOption(
jaasConfigEntries, "users.config", PlainLoginModule.class.getName());
LOGGER.info("Using configuration file {}", configFileLocation);
LOGGER.debug("Using configuration file {}", configFileLocation);
jsonReader = new UsernamePasswordJsonReader(Paths.get(configFileLocation));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void configure(final Map<String, ?> configs,
final List<AppConfigurationEntry> jaasConfigEntries) {
configFileLocation = JaasContext.configEntryOption(
jaasConfigEntries, "users.config", ScramLoginModule.class.getName());
LOGGER.info("Using configuration file {}", configFileLocation);
LOGGER.debug("Using configuration file {}", configFileLocation);
mechanismName = mechanism;
final ScramMechanism scramMechanism = ScramMechanism.forMechanismName(mechanismName);
if (scramMechanism != null) {
Expand Down

0 comments on commit 6dabd23

Please sign in to comment.