Ejemplo n.º 1
0
        public static void i(string content)
        {
            if (!allowI)
            {
                return;
            }

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