public static interface LogASTTransformation.LoggingStrategy
| Modifier and Type | Method and Description | 
|---|---|
| FieldNode | addLoggerFieldToClass(ClassNode classNode,
                     java.lang.String fieldName,
                     java.lang.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. | 
| java.lang.String | getCategoryName(ClassNode classNode,
               java.lang.String categoryName) | 
| boolean | isLoggingMethod(java.lang.String methodName) | 
| Expression | wrapLoggingMethodCall(Expression logVariable,
                     java.lang.String methodName,
                     Expression originalExpression) | 
FieldNode addLoggerFieldToClass(ClassNode classNode, java.lang.String fieldName, java.lang.String categoryName)
classNode - the class that was originally annotated with the Log transformation.fieldName - the name of the logger fieldcategoryName - the name of the logging categoryboolean isLoggingMethod(java.lang.String methodName)
java.lang.String getCategoryName(ClassNode classNode, java.lang.String categoryName)
Expression wrapLoggingMethodCall(Expression logVariable, java.lang.String methodName, Expression originalExpression)