Class Log4j2.Log4j2LoggingStrategy

    • Constructor Detail

      • Log4j2LoggingStrategy

        protected Log4j2LoggingStrategy​(GroovyClassLoader loader)
    • Method Detail

      • addLoggerFieldToClass

        public FieldNode addLoggerFieldToClass​(ClassNode classNode,
                                               String logFieldName,
                                               String categoryName)
        Description copied from interface: LogASTTransformation.LoggingStrategy
        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
        Returns:
        the FieldNode instance that was created and added to the class
      • isLoggingMethod

        public boolean isLoggingMethod​(String methodName)