System.Diagnostics.Log.Status C# (CSharp) Method

Status() public static method

public static Status ( String switchname, String message ) : void
switchname String
message String
return void
    	public static void Status(String switchname, String message)
    	{
    		LogSwitch ls;
    		ls = LogSwitch.GetSwitch (switchname);
    		LogMessage (LoggingLevels.StatusLevel0, ls, message);
    	}
    

Same methods

Log::Status ( LogSwitch logswitch, String message ) : void
Log::Status ( String message ) : void