matrei commented on code in PR #14876: URL: https://github.com/apache/grails-core/pull/14876#discussion_r2187519893
########## grails-gsp/core/src/main/groovy/org/grails/gsp/compiler/GroovyPageParser.java: ########## Review Comment: Over the entire Grails codebase we are using the `Slf4j` logging abstraction. Mostly with help from the `@Slf4j` annotation. Switching to the `Slf4j` library in a Java class means importing and using `Slf4j` classes instead of `commons-logging` classes: ```java import org.slf4j.Logger; import org.slf4j.LoggerFactory; public static final Logger LOG = LoggerFactory.getLogger(GroovyPageParser.class); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@grails.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org