JBoss Logging 3.1.0.GA

org.jboss.logging
Annotation Type LogMessage


@Retention(value=CLASS)
@Target(value=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
 Logger.Level level
          The log level at which this message should be logged.
 java.lang.Class<?> loggingClass
          The logging class name to use for this message, if any.
 

level

public abstract Logger.Level level
The log level at which this message should be logged. Defaults to INFO.

Returns:
the log level
Default:
org.jboss.logging.Logger.Level.INFO

loggingClass

public abstract java.lang.Class<?> loggingClass
The logging class name to use for this message, if any.

Returns:
the logging class name
Default:
java.lang.Void.class

JBoss Logging 3.1.0.GA

Copyright © 2012 JBoss, a division of Red Hat, Inc.