Skip to content

Commit

Permalink
Fix wrong method name for generated code in Slf4j
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-frick authored and Goooler committed Feb 22, 2024
1 parent af41551 commit 4fbb6f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/groovy/util/logging/Slf4j.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* log.name(exp)
* </pre>is mapped to
* <pre>
* if (log.isNameLoggable() {
* if (log.isNameEnabled() {
* log.name(exp)
* }</pre>
* Here name is a placeholder for info, debug, warning, error, etc.
Expand Down

0 comments on commit 4fbb6f6

Please sign in to comment.