MCPcopy Create free account
hub / github.com/facebook/SoLoader / i

Method i

java/com/facebook/soloader/LogUtil.java:84–88  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 3

extractDsoMethod · 0.95
prepareMethod · 0.95
initSoSourcesMethod · 0.95

Calls 1

isLoggableMethod · 0.95

Tested by

no test coverage detected