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; /*from w ww . j a v a2 s .c om*/ import android.util.Log; /** * Default implementation of the LoggerInterface used by the ABTester wrapper * using the Log.e(), Log.d() .... function */ public class DefualtLogger implements LoggerInterface { @Override public void e(String tag, String text) { Log.e(tag, text); } @Override public void e(String tag, String text, Throwable e) { Log.e(tag, text, e); } @Override public void d(String tag, String text) { Log.d(tag, text); } @Override public void v(String tag, String text) { Log.v(tag, text); } }