Back to project page AndroidAppLog.
The source code is released under:
Apache License
If you think the Android project AndroidAppLog 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 me.allenz.androidapplog; /* w w w .j a v a2 s . c o m*/ import android.util.Log; public class LogCatAppender extends AbstractAppender { @Override public void doAppend(final LogEvent event) { Log.println(event.getLevel().intValue(), event.getTag(), event.getMessage()); } @Override protected boolean doStart() { return true; } @Override protected boolean doStop() { return true; } }