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

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