io.github.lc.oss.commons.api.logging.LogEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api.logging Show documentation
Show all versions of api.logging Show documentation
API contract for remote logging
package io.github.lc.oss.commons.api.logging;
import io.github.lc.oss.commons.serialization.Jsonable;
public interface LogEntry extends Jsonable {
long getTimeStamp();
LogLevels getLevel();
String getLoggerName();
String getMessage();
String getThreadName();
String getStackTrace();
}