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

Method v

java/com/facebook/soloader/LogUtil.java:138–142  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 8

deleteSoFilesMethod · 0.95
depsChangedMethod · 0.95
refreshLockedMethod · 0.95
runMethod · 0.95
prepareMethod · 0.95
loadLibraryMethod · 0.95
initMethod · 0.95
loadLibraryFromMethod · 0.95

Calls 1

isLoggableMethod · 0.95

Tested by

no test coverage detected