summary refs log tree commit diff
path: root/src/Logging.h
blob: 2feae60d75ba6d7d40aa3d60a6ef5e815bf36260 (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 nhlog {
void
init(const std::string &file);

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

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

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

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