source: binary-improvements/MapRendering/Commands/EnableOpenIDDebug.cs@ 395

Last change on this file since 395 was 359, checked in by alloc, 5 years ago

Removed unnecessary try-catch-blocks from commands (command handler catches exceptions anyway and provides more detailed output)

File size: 720 bytes
Line 
1using System;
2using System.Collections.Generic;
3using AllocsFixes.NetConnections.Servers.Web;
4
5namespace AllocsFixes.CustomCommands {
6 public class EnableOpenIDDebug : ConsoleCmdAbstract {
7 public override string GetDescription () {
8 return "enable/disable OpenID debugging";
9 }
10
11 public override string[] GetCommands () {
12 return new[] {"openiddebug"};
13 }
14
15 public override void Execute (List<string> _params, CommandSenderInfo _senderInfo) {
16 if (_params.Count != 1) {
17 SdtdConsole.Instance.Output ("Current state: " + OpenID.debugOpenId);
18 return;
19 }
20
21 OpenID.debugOpenId = _params [0].Equals ("1");
22 SdtdConsole.Instance.Output ("Set OpenID debugging to " + _params [0].Equals ("1"));
23 }
24 }
25}
Note: See TracBrowser for help on using the repository browser.