Home | History | Annotate | Download | only in util

Lines Matching defs:Log

20 import android.util.Log;
29 * Wrapper for {@link Log} which adds the calling class/method to logged items.
32 * not end with "Log" (allowing clients to add another layer such as AppLog when a constant tag is
41 Log.i(tag, buildMessage(format, args));
45 Log.i(tag, buildMessage(format, args), tr);
49 // Not guarded with Log.isLoggable - these calls should be stripped out by proguard for
51 Log.v(tag, buildMessage(format, args));
55 // Not guarded with Log.isLoggable - these calls should be stripped out by proguard for
57 Log.v(tag, buildMessage(format, args), tr);
61 if (Log.isLoggable(tag, Log.DEBUG)) {
62 Log.d(tag, buildMessage(format, args));
67 if (Log.isLoggable(tag, Log.DEBUG)) {
68 Log.d(tag, buildMessage(format, args), tr);
73 Log.w(tag, buildMessage(format, args), tr);
77 Log.w(tag, buildMessage(format, args));
81 Log.e(tag, buildMessage(format, args));
85 Log.e(tag, buildMessage(format, args), tr);
89 // Ensure we always log a stack trace when calling Log.wtf.
90 Log.wtf(tag, buildMessage(format, args), new WhatATerribleException());
94 Log.wtf(tag, buildMessage(format, args), new WhatATerribleException(tr));
152 // with "Log". It will be at least two frames up, so start there.
156 && !callingClass.endsWith("Log")) {