Skip to content

Commit

Permalink
fix logger statement previously missed
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexjsenn committed Dec 18, 2020
1 parent 7ed65f8 commit b698237
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public Output<?> execute(String commandName, String[] args) {
.getName()
.equals(annotation.annotationType().getName()));
if (deprecated) {
logger.warn(String.format("Command \"%s\" is deprecated", commandName));
logger.warn("Command \"{}\" is deprecated", commandName);
}
return c.execute(args);
} catch (Exception e) {
Expand Down

0 comments on commit b698237

Please sign in to comment.