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; /*www . jav a 2 s . c om*/ import android.util.Log; public class InternalLogger extends AbstractLogger { private static final LogLevel DEFAULT_INTERNAL_LOG_LEVEL = LogLevel.VERBOSE; private static final String TAG = "aal"; public InternalLogger(){ super(TAG, DEFAULT_INTERNAL_LOG_LEVEL, TAG, false); } @Override protected void println(final LogLevel level, final Throwable t, final String format, final Object... args) { if (this.level.includes(level) && (t != null || format != null)) { final LogEvent event = buidLogEvent(level, t, format, args); Log.println(event.getLevel().intValue(), event.getTag(), event.getMessage()); } } }