Package groovy.util.logging
Class Log4j.Log4jLoggingStrategy
java.lang.Object
org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
groovy.util.logging.Log4j.Log4jLoggingStrategy
- All Implemented Interfaces:
LogASTTransformation.LoggingStrategy
- Enclosing class:
- Log4j
-
Field Summary
Fields inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
loader
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddLoggerFieldToClass
(ClassNode classNode, String logFieldName, String categoryName) In this method, you are given a ClassNode, a field name and a category name, and you must add a new Field onto the class.boolean
isLoggingMethod
(String methodName) wrapLoggingMethodCall
(Expression logVariable, String methodName, Expression originalExpression) Methods inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
classNode, getCategoryName
-
Constructor Details
-
Log4jLoggingStrategy
-
-
Method Details
-
addLoggerFieldToClass
public FieldNode addLoggerFieldToClass(ClassNode classNode, String logFieldName, String categoryName) Description copied from interface:LogASTTransformation.LoggingStrategy
In this method, you are given a ClassNode, a field name and a category name, and you must add a new Field onto the class. Return the result of the ClassNode.addField operations.- Parameters:
classNode
- the class that was originally annotated with the Log transformation.logFieldName
- the name of the logger fieldcategoryName
- the name of the logging category- Returns:
- the FieldNode instance that was created and added to the class
-
isLoggingMethod
-
wrapLoggingMethodCall
public Expression wrapLoggingMethodCall(Expression logVariable, String methodName, Expression originalExpression)
-