More fixes, more breaks...

This commit is contained in:
d8ahazard
2016-09-21 23:36:28 -05:00
parent 41a5639711
commit 8a8aaf3297
16 changed files with 238 additions and 178 deletions
@@ -1,15 +1,21 @@
package com.topjohnwu.magisk.utils;
import android.app.Application;
import android.content.Context;
import android.util.Log;
public class Logger {
private static final String LOG_TAG = "Magisk";
private static final String LOG_TAG = "Magisk: DH";
public static void dh(String msg, Object... args) {
if (PrefHelper.CheckBool("developer_logging")) {
Context context = null;
try {
context = getApplicationUsingReflection();
} catch (Exception e) {
e.printStackTrace();
}
if (PrefHelper.CheckBool("developer_logging", context)) {
if (args.length == 1 && args[0] instanceof Throwable) {
Log.d(LOG_TAG, msg, (Throwable) args[0]);
} else {
@@ -17,4 +23,9 @@ public class Logger {
}
}
}
private static Application getApplicationUsingReflection() throws Exception {
return (Application) Class.forName("android.app.AppGlobals")
.getMethod("getInitialApplication").invoke(null, (Object[]) null);
}
}