public static void d(String msg, Object... args) {
        try {
            if (BuildConfig.DEBUG) 
                android.util.Log.d(TAG, String.format(msg, args));
        } catch (MissingFormatArgumentException e) {