mirror of https://github.com/FongMi/TV.git
parent
61892f990f
commit
61ebf9be6a
@ -0,0 +1,16 @@ |
||||
package com.github.catvod.crawler; |
||||
|
||||
import com.orhanobut.logger.Logger; |
||||
|
||||
public class SpiderDebug { |
||||
|
||||
private static final String TAG = SpiderDebug.class.getSimpleName(); |
||||
|
||||
public static void log(Throwable th) { |
||||
Logger.t(TAG).d(th.getMessage()); |
||||
} |
||||
|
||||
public static void log(String msg) { |
||||
Logger.t(TAG).d(msg); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue