public static void d(string content) { if (!allowD) { return; } if (customLogger != null) { customLogger.d(TAG, content); } else { Log.Debug(TAG, content); } }