Microsoft.Protocols.TestSuites.Pccrtp.Logger.AddDebug C# (CSharp) Method

AddDebug() public method

The method implements adding the log of debug information.
public AddDebug ( string message ) : void
message string Message reprents the log information.
return void
        public void AddDebug(string message)
        {
            this.site.Log.Add(LogEntryKind.Debug, message);
        }