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 activemq-all Show documentation
Show all versions of activemq-all Show documentation
Puts together an ActiveMQ jar bundle
package org.slf4j.event;
import java.util.List;
import org.slf4j.Marker;
/**
* The minimal interface sufficient for the restitution of data passed
* by the user to the SLF4J API.
*
* @author Ceki Gülcü
* @since 1.7.15
*/
public interface LoggingEvent {
Level getLevel();
String getLoggerName();
String getMessage();
List