Files
TVBoxSE/TVBox_Java/crawler/SpiderDebug.java
T
2022-12-02 13:36:22 +08:00

20 lines
396 B
Java

package com.github.catvod.crawler;
public class SpiderDebug {
public static void log(Throwable th) {
try {
android.util.Log.d("SpiderLog", th.getMessage(), th);
} catch (Throwable th1) {
}
}
public static void log(String msg) {
try {
android.util.Log.d("SpiderLog", msg);
} catch (Throwable th1) {
}
}
}