mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 23:10:05 +00:00
Initial setup for spdlog
This commit is contained in:
parent
7aef98b002
commit
20b8c75234
5 changed files with 67 additions and 0 deletions
20
wxdata/include/scwx/util/logger.hpp
Normal file
20
wxdata/include/scwx/util/logger.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue