Skip to content

Commit

Permalink
Merge pull request #1878 from mapfish/fix-logging
Browse files Browse the repository at this point in the history
Configuration.java: Fix logging.
  • Loading branch information
bhoefling-c2c authored Sep 22, 2021
2 parents b3ada6d + 1a5f28c commit 8375a8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public final Template getTemplate(final String name) {
this.accessAssertion.assertAccess("Configuration", this);
template.assertAccessible(name);
} else {
LOGGER.warn("Template '%s' does not exist. Options are: %s", name, this.templates.keySet());
LOGGER.warn("Template '{}' does not exist. Options are: {}", name, this.templates.keySet());
}
return template;
}
Expand Down

0 comments on commit 8375a8b

Please sign in to comment.