Back to project page ABTester.
The source code is released under:
MIT License
If you think the Android project ABTester 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 ab.tester; public interface LoggerInterface { public void e(String tag,String text); public void e(String tag,String text, Throwable e); public void d(String tag,String text); public void v(String tag,String text); }