more telemetry events

This commit is contained in:
13xforever
2020-07-13 22:23:16 +05:00
parent a3f0146851
commit 7f4fd3dee7
5 changed files with 23 additions and 1 deletions

View File

@@ -82,6 +82,7 @@ namespace CompatBot
public static string LogPath => config.GetValue(nameof(LogPath), "./logs/"); // paths are relative to the working directory
public static string IrdCachePath => config.GetValue(nameof(IrdCachePath), "./ird/");
public static double GameTitleMatchThreshold => config.GetValue(nameof(GameTitleMatchThreshold), 0.57);
public static byte[] CryptoSalt => Convert.FromBase64String(config.GetValue(nameof(CryptoSalt), ""));
internal static string CurrentLogPath => Path.GetFullPath(Path.Combine(LogPath, "bot.log"));