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

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