Package groovy.util.logging
Class Log4j2.Log4j2LoggingStrategy
- java.lang.Object
- 
- org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
- 
- groovy.util.logging.Log4j2.Log4j2LoggingStrategy
 
 
- 
- All Implemented Interfaces:
- LogASTTransformation.LoggingStrategy
 - Enclosing class:
- Log4j2
 
 public static class Log4j2.Log4j2LoggingStrategy extends LogASTTransformation.AbstractLoggingStrategy 
- 
- 
Field Summary- 
Fields inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyloader
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedLog4j2LoggingStrategy(GroovyClassLoader loader)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldNodeaddLoggerFieldToClass(ClassNode classNode, java.lang.String logFieldName, 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.booleanisLoggingMethod(java.lang.String methodName)ExpressionwrapLoggingMethodCall(Expression logVariable, java.lang.String methodName, Expression originalExpression)- 
Methods inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyclassNode, getCategoryName
 
- 
 
- 
- 
- 
Constructor Detail- 
Log4j2LoggingStrategyprotected Log4j2LoggingStrategy(GroovyClassLoader loader) 
 
- 
 - 
Method Detail- 
addLoggerFieldToClasspublic FieldNode addLoggerFieldToClass(ClassNode classNode, java.lang.String logFieldName, java.lang.String categoryName) Description copied from interface:LogASTTransformation.LoggingStrategyIn 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 field
- categoryName- the name of the logging category
- Returns:
- the FieldNode instance that was created and added to the class
 
 - 
isLoggingMethodpublic boolean isLoggingMethod(java.lang.String methodName) 
 - 
wrapLoggingMethodCallpublic Expression wrapLoggingMethodCall(Expression logVariable, java.lang.String methodName, Expression originalExpression) 
 
- 
 
-