Annotation Type LogMessage


@Retention(CLASS) @Target(METHOD) @Documented public @interface LogMessage
A typed logger method. Indicates that this method will log the associated Message to the logger system, as opposed to being a simple message lookup.
Author:
David M. Lloyd
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    org.jboss.logging.Logger.Level
    The log level at which this message should be logged.
    The logging class name to use for this message, if any.
  • Element Details

    • level

      org.jboss.logging.Logger.Level level
      The log level at which this message should be logged. Defaults to INFO.
      Returns:
      the log level
      Default:
      INFO
    • loggingClass

      Class<?> loggingClass
      The logging class name to use for this message, if any.
      Returns:
      the logging class name
      Default:
      java.lang.Void.class