Example #1
0
        public static void d(string content)
        {
            if (!allowD)
            {
                return;
            }

            if (customLogger != null)
            {
                customLogger.d(TAG, content);
            }
            else
            {
                Log.Debug(TAG, content);
            }
        }