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

io.github.lc.oss.commons.api.logging.LogEntry Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy