-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogger.h
68 lines (57 loc) · 3.72 KB
/
Logger.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
#pragma once
#include "noncopyable.h"
#include <string>
// 定义日志级别
enum LogLevel {
INFO, // 普通信息
ERROR, // 错误信息
FATAL, // core 信息
DEBUG, // 调试信息
};
// 单例: 输出一个日志类, 默认是 private 继承 noncopyable
class Logger : noncopyable {
private:
Logger(/* args */) {}
int logLevel_;
public:
static Logger &instance(); // 获取日志唯一实例对象
void setLogLevel(int level); // 设置日志级别
void log(std::string msg); // 写日志
};
#define LOG_INFO(logmsgFormat, ...) \
do { \
Logger &logger = Logger::instance(); \
logger.setLogLevel(INFO); \
char buf[1024]; \
snprintf(buf, 1024, logmsgFormat, ##__VA_ARGS__); \
logger.log(buf);\
} while (0)
#define LOG_ERROR(logmsgFormat, ...) \
do { \
Logger &logger = Logger::instance(); \
logger.setLogLevel(ERROR); \
char buf[1024]; \
snprintf(buf, 1024, logmsgFormat, ##__VA_ARGS__); \
logger.log(buf);\
} while (0)
#define LOG_FATAL(logmsgFormat, ...) \
do { \
Logger &logger = Logger::instance(); \
logger.setLogLevel(FATAL); \
char buf[1024]; \
snprintf(buf, 1024, logmsgFormat, ##__VA_ARGS__); \
logger.log(buf);\
exit(-1); \
} while (0)
#ifdef MUDEBUG
#define LOG_DEBUG(logmsgFormat, ...) \
do { \
Logger &logger = Logger::instance(); \
logger.setLogLevel(DEBUG); \
char buf[1024]; \
snprintf(buf, 1024, logmsgFormat, ##__VA_ARGS__); \
logger.log(buf);\
} while (0)
#else
#define LOG_DEBUG(logmsgFormat, ...)
#endif