Send an Log#VERBOSE 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)
| 136 | * @param tr An exception to log |
| 137 | */ |
| 138 | public static void v(final String tag, final String msg, final Throwable tr) { |
| 139 | if (isLoggable(tag, Log.VERBOSE)) { |
| 140 | Log.v(tag, msg, tr); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Send an {@link Log#VERBOSE} log message. |
no test coverage detected