shortcut guide logs (#8191)

This commit is contained in:
Mykhailo Pylyp
2020-11-24 20:36:04 +02:00
committed by GitHub
parent 50dcd97611
commit 65f8966247
5 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <common/logger/logger.h>
class ShortcutGuideLogger
{
static std::shared_ptr<Logger> logger;
public:
static void Init(std::wstring moduleSaveLocation);
static std::shared_ptr<Logger> GetLogger();
};