Send an Log#INFO 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)
| 82 | * @param tr An exception to log |
| 83 | */ |
| 84 | public static void i(final String tag, final String msg, final Throwable tr) { |
| 85 | if (isLoggable(tag, Log.INFO)) { |
| 86 | Log.i(tag, msg, tr); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Send an {@link Log#INFO} log message |
no test coverage detected