Class Slf4j.Slf4jLoggingStrategy

All Implemented Interfaces:
LogASTTransformation.LoggingStrategy, LogASTTransformation.LoggingStrategyV2
Enclosing class:
Slf4j

public static class Slf4j.Slf4jLoggingStrategy extends LogASTTransformation.AbstractLoggingStrategyV2
Logging strategy for SLF4J.
  • Constructor Details

    • Slf4jLoggingStrategy

      protected Slf4jLoggingStrategy(GroovyClassLoader loader)
      Creates an SLF4J logging strategy.
      Parameters:
      loader - the class loader used to resolve logger classes
  • Method Details

    • addLoggerFieldToClass

      public FieldNode addLoggerFieldToClass(ClassNode classNode, String logFieldName, String categoryName, int fieldModifiers)
      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 field
      categoryName - the name of the logging category
      fieldModifiers - the modifiers (private, final, et. al.) of the logger field
      Returns:
      the FieldNode instance that was created and added to the class
    • isLoggingMethod

      public boolean isLoggingMethod(String methodName)
    • wrapLoggingMethodCall

      public Expression wrapLoggingMethodCall(Expression logVariable, String methodName, Expression originalExpression)