Send a #VERBOSE log message. @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.
(String tag, String msg)
| 115 | * @param msg The message you would like logged. |
| 116 | */ |
| 117 | public static int v(String tag, String msg) { |
| 118 | return println_native(LOG_ID_MAIN, VERBOSE, tag, msg); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Send a {@link #VERBOSE} log message and log the exception. |