Package groovy.util.logging
Class Slf4j.Slf4jLoggingStrategy
- java.lang.Object
-
- groovy.util.logging.Slf4j.Slf4jLoggingStrategy
-
- All Implemented Interfaces:
LogASTTransformation.LoggingStrategy
- Enclosing class:
- Slf4j
public static class Slf4j.Slf4jLoggingStrategy extends java.lang.Object implements LogASTTransformation.LoggingStrategy
-
-
Constructor Summary
Constructors Constructor Description Slf4jLoggingStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldNode
addLoggerFieldToClass(ClassNode classNode, java.lang.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(java.lang.String methodName)
Expression
wrapLoggingMethodCall(Expression logVariable, java.lang.String methodName, Expression originalExpression)
-
-
-
Method Detail
-
addLoggerFieldToClass
public FieldNode addLoggerFieldToClass(ClassNode classNode, java.lang.String logFieldName)
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
public boolean isLoggingMethod(java.lang.String methodName)
- Specified by:
isLoggingMethod
in interfaceLogASTTransformation.LoggingStrategy
-
wrapLoggingMethodCall
public Expression wrapLoggingMethodCall(Expression logVariable, java.lang.String methodName, Expression originalExpression)
- Specified by:
wrapLoggingMethodCall
in interfaceLogASTTransformation.LoggingStrategy
-
-