Skip to content

Commit

Permalink
Remove check for LOG.isWarnEnabled()
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Dec 4, 2024
1 parent 2ac997f commit a83afac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public DebugUiConfig(JsonNode node, String source, boolean logUnusedParams) {
)
);

if (logUnusedParams && LOG.isWarnEnabled()) {
if (logUnusedParams) {
root.logAllWarnings(LOG::warn);
}
}
Expand Down

0 comments on commit a83afac

Please sign in to comment.