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 openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy