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 aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
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();
}