forked from skalenetwork/skale-consensus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Log.h
94 lines (59 loc) · 2.47 KB
/
Log.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Copyright (C) 2018-2019 SKALE Labs
This file is part of skale-consensus.
skale-consensus is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
skale-consensus is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with skale-consensus. If not, see <https://www.gnu.org/licenses/>.
@file Log.h
@author Stan Kladko
@date 2018
*/
#ifndef _LOG_H
#define _LOG_H
#include <stdlib.h>
#include <iostream>
#include <map>
#include <memory>
#include "spdlog/spdlog.h"
#include "exceptions/FatalError.h"
#include "exceptions/InvalidArgumentException.h"
#include "exceptions/InvalidStateException.h"
#include "SkaleCommon.h"
#include "node/ConsensusEngine.h"
using namespace std;
class SkaleException;
namespace spdlog {
class logger;
}
#define __CLASS_NAME__ className( __PRETTY_FUNCTION__ )
#define LOG( __SEVERITY__, __MESSAGE__ ) \
{ \
std::stringstream __TMP__LOG__STREAM__; \
__TMP__LOG__STREAM__ << __MESSAGE__; \
ConsensusEngine::log( \
__SEVERITY__, __TMP__LOG__STREAM__.str(), className( __PRETTY_FUNCTION__ ) ); \
}
class SkaleLog {
ConsensusEngine* engine;
string prefix = "";
node_id nodeID;
shared_ptr< spdlog::logger > mainLogger, proposalLogger, consensusLogger, catchupLogger,
netLogger, dataStructuresLogger, pendingQueueLogger;
public:
ConsensusEngine* getEngine() const;
SkaleLog( node_id _nodeID, ConsensusEngine* _engine );
const node_id getNodeID() const;
map< string, shared_ptr< spdlog::logger > > loggers;
level_enum globalLogLevel;
void setGlobalLogLevel( string& _s );
shared_ptr< spdlog::logger > loggerForClass( const char* _className );
static level_enum logLevelFromString( string& _s );
};
#endif