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 paulk-asert committed Feb 22, 2024
1 parent 38ca3dc commit a4809f1
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 @@ -50,7 +50,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 a4809f1

Please sign in to comment.