Skip to content

Commit

Permalink
additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
DoNotPanicUA committed Apr 27, 2022
1 parent 9a3964d commit 4d4b43c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ protected JsonNode getConfig() {
}

public JsonNode getStaticConfig() {
return Jsons.deserialize(IOs.readFile(Path.of("secrets/config.json")));
var config = Jsons.deserialize(IOs.readFile(Path.of("secrets/config.json")));
LOGGER.warn("real config : {} ", config);
return config;
}

@Override
Expand Down

0 comments on commit 4d4b43c

Please sign in to comment.