using System; using System.Text; using System.Linq; using System.Drawing; using System.Diagnostics; using System.Windows.Forms; using System.Threading; using System.Threading.Tasks; using System.Collections.Generic; using Tango.PMR.Debugging; using Tango.Stubs; public void OnExecute(StubManager stubManager) { /* Tango.PMR.Debugging.DebugLogCategory.Info: Tango.PMR.Debugging.DebugLogCategory.Warning: Tango.PMR.Debugging.DebugLogCategory.Error: Tango.PMR.Debugging.DebugLogCategory.Critical: Tango.PMR.Debugging.DebugLogCategory.Debug: */ SetDebugLogCategoryRequest setDebugLogCategoryRequest = new SetDebugLogCategoryRequest(); setDebugLogCategoryRequest.MinimumCategory = Tango.PMR.Debugging.DebugLogCategory.Info; var response = stubManager.Run(setDebugLogCategoryRequest); }