summary refs log tree commit diff
path: root/include/Logging.hpp
blob: bdbd3e2c7ce89979509d671156e16d78b9668e1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <memory>
#include <spdlog/spdlog.h>

namespace log {
void
init(const std::string &file);

std::shared_ptr<spdlog::logger>
main();

std::shared_ptr<spdlog::logger>
net();

std::shared_ptr<spdlog::logger>
db();

std::shared_ptr<spdlog::logger>
crypto();
}