LogEntry.java 501 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.granite.logging;

import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.logging.LogLevel;

@ProviderType
public interface LogEntry {
    public LogLevel getLogLevel();

    public String getMessage();

    public String getLoggerName();

    public long getTimeStamp();

    public String getExceptionOutput();

    public String getThreadName();
}