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

fr.avianey.androidsvgdrawable.util.Log Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package fr.avianey.androidsvgdrawable.util;

public interface Log {
    
    boolean isDebugEnabled();

    void debug(CharSequence content);

    void debug(CharSequence content, Throwable error);

    void debug(Throwable error);

    boolean isInfoEnabled();

    void info(CharSequence content);

    void info(CharSequence content, Throwable error);

    void info(Throwable error);

    boolean isWarnEnabled();

    void warn(CharSequence content);

    void warn(CharSequence content, Throwable error);

    void warn(Throwable error);

    boolean isErrorEnabled();

    void error(CharSequence content);

    void error(CharSequence content, Throwable error);

    void error(Throwable error);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy