All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.slf4j.event.LoggingEvent Maven / Gradle / Ivy

There is a newer version: 2024.11.18598.20241113T125352Z-241000
Show newest version
package org.slf4j.event;

import org.slf4j.Marker;

/**
 *  @author ceki
 *  @since 1.7.15
 *
 * @deprecated This internal slf4j API is not supported by AEM as a Cloud Service.
 */
@Deprecated(since = "2024-04-11")
public interface LoggingEvent {

    Level getLevel();

    Marker getMarker();

    String getLoggerName();

    String getMessage();

    String getThreadName();

    Object[] getArgumentArray();

    long getTimeStamp();

    Throwable getThrowable();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy