public static void e(String msg, Throwable exception) { Log.e("fqrouter", msg, exception); writeLogFile("ERROR", msg + "\r\n" + formatException(exception)); }
public static void i(String msg) { Log.i("fqrouter", msg); writeLogFile("INFO", msg); }
public static void e(String msg) { Log.e("fqrouter", msg); writeLogFile("ERROR", msg); }