(String str)
| 17 | private static final ExecutorService sExecutorService = Executors.newCachedThreadPool(); |
| 18 | |
| 19 | public static void loge(String str) { |
| 20 | Log.e("TMoe", str); |
| 21 | try { |
| 22 | XposedBridge.log(str); |
| 23 | } catch (NoClassDefFoundError e) { |
| 24 | Log.e("Xposed", str); |
| 25 | Log.e("EdXposed-Bridge", str); |
| 26 | Log.e("LSPosed-Bridge", str); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | public static void loge(Throwable th) { |
| 31 | if (th == null) { |
no test coverage detected