Home | History | Annotate | Download | only in mime4j

Lines Matching full:tostring

54         android.util.Log.v(LOG_TAG, toString(message, null));
59 android.util.Log.v(LOG_TAG, toString(message, t));
64 android.util.Log.d(LOG_TAG, toString(message, null));
69 android.util.Log.d(LOG_TAG, toString(message, t));
74 android.util.Log.i(LOG_TAG, toString(message, null));
79 android.util.Log.i(LOG_TAG, toString(message, t));
83 android.util.Log.w(LOG_TAG, toString(message, null));
87 android.util.Log.w(LOG_TAG, toString(message, t));
91 android.util.Log.e(LOG_TAG, toString(message, null));
95 android.util.Log.e(LOG_TAG, toString(message, t));
99 android.util.Log.e(LOG_TAG, toString(message, null));
103 android.util.Log.e(LOG_TAG, toString(message, t));
106 private static String toString(Object o, Throwable t) {
107 String m = (o == null) ? "(null)" : o.toString();