Send a Log#WARN 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)
| 59 | * @param tr An exception to log |
| 60 | */ |
| 61 | public static void w(final String tag, final String msg, final Throwable tr) { |
| 62 | Log.w(tag, msg, tr); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Send a {@link Log#WARN} log message. |
no outgoing calls
no test coverage detected