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

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