Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.4
-
None
Description
The log variable injected by the @Log annotation is not compiled if it's used inside a Closure.
import groovy.transform.* import groovy.util.logging.* @Log @CompileStatic class GreetingActor { def receive = { log.info "test" } }