
fr.avianey.androidsvgdrawable.util.Log Maven / Gradle / Ivy
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