Send an Log#DEBUG log message and log the exception. @param tag Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs. @param msg The message you would like logged. @param tr An exception to log
(final String tag, final String msg, final Throwable tr)
| 109 | * @param tr An exception to log |
| 110 | */ |
| 111 | public static void d(final String tag, final String msg, final Throwable tr) { |
| 112 | if (isLoggable(tag, Log.DEBUG)) { |
| 113 | Log.d(tag, msg, tr); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Send an {@link Log#DEBUG} log message. |
no test coverage detected