CSharpRTMP.Common.Logger.FINEST C# (CSharp) Method

FINEST() public static method

public static FINEST ( string format ) : void
format string
return void
	    public static void FINEST(string format, params object[] args)
        {
            Console.ForegroundColor = ConsoleColor.Green;
			Log (string.Format(format,args));
		}
        public static void INFO(string format, params object[] args)