Add experimental debug logging

This commit is contained in:
Zontreck 2020-06-22 01:09:50 -07:00
parent fc99995415
commit 48338805bd
6 changed files with 101 additions and 10 deletions

View file

@ -65,6 +65,9 @@ namespace Bot
public string SSLCertificatePFX { get; set; } = "certificate.pfx";
public string SSLCertificatePWD { get; set; } = "";
public bool LogChatAndIMs { get; set; } = false;
public string IMAndChatFormat { get; set; } = "[%TIME%] (%NAME%): %MESSAGE%";
public Dictionary<UUID, int> BotAdmins { get; set; } = new Dictionary<UUID, int>();
public List<string> AuthedGithubUsers { get; set; } = new List<string>();