Skip to content

Commit

Permalink
Merge pull request #20 from chanikag/master
Browse files Browse the repository at this point in the history
Change log level to fix APIM:10198
  • Loading branch information
chanikag authored Apr 1, 2021
2 parents 9eeda6b + cbbf2f5 commit 00d2dc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/wso2/config/mapper/ConfigParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ public static void parse(String configFilePath, String resourcesDir, String outp
if (configFileSet.isChanged()) {
// Log changed files.
configFileSet.getChangedFiles().
forEach(path -> log.warn("Configurations Changed in :" + path));
log.warn("Overriding files in configuration directory " + outputDir);
forEach(path -> log.info("Configurations Changed in :" + path));
log.info("Overriding files in configuration directory " + outputDir);
}
if (referencesVariableChanged) {
log.warn("Configuration value changed in references, Overriding files in the " +
Expand Down

0 comments on commit 00d2dc5

Please sign in to comment.