summary refs log tree commit diff
path: root/src/Logging.h
blob: e54f3c3f3b861062858bac8118b6669ab4108372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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();

extern bool enable_debug_log_from_commandline;
}