Files
TvJar/app/src/main/java/com/github/catvod/crawler/SpiderDebug.java
T
2022-07-30 20:05:08 +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) {
}
}
}