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

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

There is a newer version: 3.46.1.0
Show newest version
package org.sqlite.util;

/** A simple internal Logger interface. */
public interface Logger {
    boolean isTraceEnabled();

    void trace(String format, Object o1, Object o2);

    void info(String format, Object o1, Object o2);

    void warn(String msg);

    void error(String message, Throwable t);

    void error(String format, Object o1, Throwable t);

    void error(String format, Object o1, Object o2, Throwable t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy