// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package com.gesoftoa.common; import android.util.Log; public class LogUtils { private static final String TAG_ERROR = "error"; private static final String TAG_DEBUG = "debug"; private static final String MSG = "gesoft"; private static final boolean IS_DEBUG = true; public LogUtils() { } public static void error(Exception e) { Log.e("error", "gesoft", e); } public static void error(String tag, String msg, Exception e) { Log.e(tag, msg, e); } public static void debug(Object msg) { Log.d("debug", String.valueOf(msg)); } }