(String str)
| 60 | } |
| 61 | |
| 62 | public static void logw(String str) { |
| 63 | Log.i("TMoe", str); |
| 64 | try { |
| 65 | XposedBridge.log(str); |
| 66 | } catch (NoClassDefFoundError e) { |
| 67 | Log.w("Xposed", str); |
| 68 | Log.w("EdXposed-Bridge", str); |
| 69 | Log.w("LSPosed-Bridge", str); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | public static void logw(Throwable th) { |
| 74 | if (th == null) { |
no test coverage detected