Commons.CommonsLoggingStrategy, Log.JavaUtilLoggingStrategy, Log4j.Log4jLoggingStrategy, Log4j2.Log4j2LoggingStrategy, LogASTTransformation.AbstractLoggingStrategy, Slf4j.Slf4jLoggingStrategypublic static interface LogASTTransformation.LoggingStrategy
| Modifier and Type | Method | Description |
|---|---|---|
FieldNode |
addLoggerFieldToClass(ClassNode classNode,
String fieldName,
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.
|
String |
getCategoryName(ClassNode classNode,
String categoryName) |
|
boolean |
isLoggingMethod(String methodName) |
|
Expression |
wrapLoggingMethodCall(Expression logVariable,
String methodName,
Expression originalExpression) |
FieldNode addLoggerFieldToClass(ClassNode classNode, String fieldName, 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(String methodName)
Expression wrapLoggingMethodCall(Expression logVariable, String methodName, Expression originalExpression)