MCPcopy Create free account
hub / github.com/afkT/DevUtils / iTag

Method iTag

lib/DevApp/src/main/java/dev/utils/LogPrintUtils.java:344–352  ·  view source on GitHub ↗

打印 INFO 日志 @param tag 日志 TAG @param message 日志内容 @param args 格式化参数

(
            final String tag,
            final String message,
            final Object... args
    )

Source from the content-addressed store, hash-verified

342 * @param args 格式化参数
343 */
344 public static void iTag(
345 final String tag,
346 final String message,
347 final Object... args
348 ) {
349 if (JUDGE_PRINT_LOG) {
350 printLog(Log.INFO, tag, createMessage(message, args));
351 }
352 }
353
354 /**
355 * 打印 VERBOSE 日志

Callers 2

initMethod · 0.95
iMethod · 0.95

Calls 2

printLogMethod · 0.95
createMessageMethod · 0.95

Tested by

no test coverage detected