Back to project page androidsvgdrawable-plugin.
The source code is released under:
Apache License
If you think the Android project androidsvgdrawable-plugin listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package fr.avianey.androidsvgdrawable.util; //from www . j a v a 2 s . c om 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); }