Package groovy.util.logging
Annotation Interface Commons
This local transform adds a logging ability to your program using
Apache Commons logging. Every method call on an unbound variable named log
will be mapped to a call to the logger. For this a log field will be
inserted in the class. If the field already exists the usage of this transform
will cause a compilation error. The method name will be used to determine
what to call on the logger.
log.name(exp)is mapped to
if (log.isNameEnabled() {
log.name(exp)
}
Here name is a placeholder for info, debug, warning, error, etc.
If the expression exp is a constant or only a variable access the method call will
not be transformed. But this will still cause a call on the injected logger.- Since:
- 1.8.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classLogging strategy for Apache Commons Logging. -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionReturns the logger category name.Class<? extends LogASTTransformation.LoggingStrategy>Returns the logging strategy implementation used by this transform.Returns the injected logger field name.If specified, must match the "id" attribute in a VisibilityOptions annotation to enable a custom visibility.
-
Element Details
-
value
String valueReturns the injected logger field name. Defaults to"log".- Returns:
- the logger field name
- Default:
- "log"
-
category
String categoryReturns the logger category name. Defaults toLogASTTransformation.DEFAULT_CATEGORY_NAME, which uses the host class name.- Returns:
- the logger category name
- Default:
- "##default-category-name##"
-
visibilityId
String visibilityIdIf specified, must match the "id" attribute in a VisibilityOptions annotation to enable a custom visibility.- Default:
- "<DummyUndefinedMarkerString-DoNotUse>"
-
loggingStrategy
Class<? extends LogASTTransformation.LoggingStrategy> loggingStrategyReturns the logging strategy implementation used by this transform. Defaults toCommons.CommonsLoggingStrategy.- Returns:
- the logging strategy type
- Default:
- groovy.util.logging.Commons.CommonsLoggingStrategy.class
-