(Throwable th)
| 9 | private static final String TAG = SpiderDebug.class.getSimpleName(); |
| 10 | |
| 11 | public static void log(Throwable th) { |
| 12 | if (th != null) th.printStackTrace(); |
| 13 | } |
| 14 | |
| 15 | public static void log(String msg) { |
| 16 | if (!TextUtils.isEmpty(msg)) Logger.t(TAG).d(msg); |
no test coverage detected