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

io.testable.java.TestableLog Maven / Gradle / Ivy

package io.testable.java;

public class TestableLog {

    public enum Level { Trace, Debug, Info, Error, Fatal }

    private Level level;
    private String message;
    private long timestamp;

    public TestableLog(Level level, String message, long timestamp) {
        this.level = level;
        this.message = message;
        this.timestamp = timestamp;
    }

    public Level getLevel() {
        return level;
    }

    public String getMessage() {
        return message;
    }

    public long getTimestamp() {
        return timestamp;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy