Example #1
0
        /// <summary>
        /// Execute the specified command line as debugging command.
        /// </summary>
        /// <param name="commandLine">Command line to execute.</param>
        public void ExecuteDebuggingCommand(string commandLine)
        {
            Log.Info("Execute debugging command");

            if (IsDebuggingCommandReady)
            {
                try
                {
                    DebuggingService.ExecuteDebuggingCommandOutDefault(commandLine);
                }
                catch (Exception ex)
                {
                    Log.Error("Failed to execute debugging command", ex);
                }
            }
        }