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

Method wtfTag

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

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

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

Source from the content-addressed store, hash-verified

374 * @param args 格式化参数
375 */
376 public static void wtfTag(
377 final String tag,
378 final String message,
379 final Object... args
380 ) {
381 if (JUDGE_PRINT_LOG) {
382 printLog(Log.ASSERT, tag, createMessage(message, args));
383 }
384 }
385
386 /**
387 * 将 JSON 缩进格式化后打印为 DEBUG 日志

Callers 1

wtfMethod · 0.95

Calls 2

printLogMethod · 0.95
createMessageMethod · 0.95

Tested by

no test coverage detected