Interface LogASTTransformation.LoggingStrategy

    • Method Detail

      • addLoggerFieldToClass

        FieldNode addLoggerFieldToClass​(ClassNode classNode,
                                        java.lang.String fieldName)
        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.
        Parameters:
        classNode - the class that was originally annotated with the Log transformation.
        fieldName - the name of the logger field
        Returns:
        the FieldNode instance that was created and added to the class
      • isLoggingMethod

        boolean isLoggingMethod​(java.lang.String methodName)