org.slf4j.event.LoggingEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slf4j Show documentation
Show all versions of slf4j Show documentation
The core maven build properties
package org.slf4j.event;
import org.slf4j.Marker;
/**
*
* @author ceki
* @since 1.7.15
*/
public interface LoggingEvent {
Level getLevel();
Marker getMarker();
String getLoggerName();
String getMessage();
String getThreadName();
Object[] getArgumentArray();
long getTimeStamp();
Throwable getThrowable();
}