Added logging to keyboard manager (#9155)

This commit is contained in:
Mykhailo Pylyp
2021-01-18 19:38:42 +02:00
committed by GitHub
parent 3e59fe6877
commit 98a6e27957
8 changed files with 20 additions and 1 deletions

View File

@@ -16,6 +16,8 @@ struct LogSettings
inline const static std::wstring fancyZonesLogPath = L"FancyZonesLogs\\fancyzones-log.txt";
inline const static std::string shortcutGuideLoggerName = "shortcut-guide";
inline const static std::wstring shortcutGuideLogPath = L"ShortcutGuideLogs\\shortcut-guide-log.txt";
inline const static std::string keyboardManagerLoggerName = "keyboard-manager";
inline const static std::wstring keyboardManagerLogPath = L"Logs\\keyboard-manager-log.txt";
inline const static int retention = 30;
std::wstring logLevel;
LogSettings();