Initial setup for spdlog

This commit is contained in:
Dan Paulat 2022-04-13 20:08:04 -05:00
parent 7aef98b002
commit 20b8c75234
5 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#pragma once
#include <memory>
#include <string>
#include <spdlog/logger.h>
namespace scwx
{
namespace util
{
namespace Logger
{
void Initialize();
std::shared_ptr<spdlog::logger> Create(const std::string& name);
} // namespace Logger
} // namespace util
} // namespace scwx