Package groovy.util.logging
Class Log.JavaUtilLoggingStrategy
java.lang.Object
groovy.util.logging.Log.JavaUtilLoggingStrategy
- All Implemented Interfaces:
LogASTTransformation.LoggingStrategy
- Enclosing class:
Log
public static class Log.JavaUtilLoggingStrategy
extends Object
implements LogASTTransformation.LoggingStrategy
This class contains the logic of how to weave a Java Util Logging logger into the host class.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddLoggerFieldToClass
(ClassNode classNode, String logFieldName) In this method, you are given a ClassNode and a field name, and you must add a new Field onto the class.boolean
isLoggingMethod
(String methodName) wrapLoggingMethodCall
(Expression logVariable, String methodName, Expression originalExpression)
-
Constructor Details
-
JavaUtilLoggingStrategy
public JavaUtilLoggingStrategy()
-
-
Method Details
-
addLoggerFieldToClass
Description copied from interface:LogASTTransformation.LoggingStrategy
In this method, you are given a ClassNode and a field name, and you must add a new Field onto the class. Return the result of the ClassNode.addField operations.- Specified by:
addLoggerFieldToClass
in interfaceLogASTTransformation.LoggingStrategy
- Parameters:
classNode
- the class that was originally annotated with the Log transformation.logFieldName
- the name of the logger field- Returns:
- the FieldNode instance that was created and added to the class
-
isLoggingMethod
- Specified by:
isLoggingMethod
in interfaceLogASTTransformation.LoggingStrategy
-
wrapLoggingMethodCall
public Expression wrapLoggingMethodCall(Expression logVariable, String methodName, Expression originalExpression) - Specified by:
wrapLoggingMethodCall
in interfaceLogASTTransformation.LoggingStrategy
-