forked from bloomberg/pystack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging.h
More file actions
55 lines (44 loc) · 789 Bytes
/
logging.h
File metadata and controls
55 lines (44 loc) · 789 Bytes
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
#pragma once
#include <sstream>
#include <string>
namespace pystack {
enum logLevel {
NOTSET = 0,
DEBUG = 10,
INFO = 20,
WARNING = 30,
ERROR = 40,
CRITICAL = 50,
};
void
logWithPython(const std::string& message, int level);
class LOG
{
public:
// Constructors
LOG()
: msgLevel(INFO){};
explicit LOG(logLevel type)
{
msgLevel = type;
};
// Destructors
~LOG()
{
logWithPython(buffer.str(), msgLevel);
};
// Operators
template<typename T>
LOG& operator<<(const T& msg)
{
buffer << msg;
return *this;
};
private:
// Data members
std::ostringstream buffer;
logLevel msgLevel = DEBUG;
};
void
initializePythonLoggerInterface();
} // namespace pystack