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

org.sqlite.util.Logger Maven / Gradle / Ivy

The newest version!
package org.sqlite.util;

import java.util.function.Supplier;

/** A simple internal Logger interface. */
public interface Logger {
    void trace(Supplier message);

    void info(Supplier message);

    void warn(Supplier message);

    void error(Supplier message, Throwable t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy