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

Method d

java/com/facebook/soloader/LogUtil.java:111–115  ·  view source on GitHub ↗

Send an Log#DEBUG 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

109 * @param tr An exception to log
110 */
111 public static void d(final String tag, final String msg, final Throwable tr) {
112 if (isLoggable(tag, Log.DEBUG)) {
113 Log.d(tag, msg, tr);
114 }
115 }
116
117 /**
118 * Send an {@link Log#DEBUG} log message.

Callers 13

createMethod · 0.95
loadLibraryMethod · 0.95
initSoSourcesMethod · 0.95
addDirectApkSoSourceMethod · 0.95
addSystemLibSoSourceMethod · 0.95
getAppTypeMethod · 0.95
prependSoSourceMethod · 0.95
makeLdLibraryPathMethod · 0.95
loadLibraryFromMethod · 0.95

Calls 1

isLoggableMethod · 0.95

Tested by

no test coverage detected