-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger.cpp
More file actions
55 lines (40 loc) · 913 Bytes
/
logger.cpp
File metadata and controls
55 lines (40 loc) · 913 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
#include "logger.h"
namespace Logger {
int log_level;
FILE* log_file;
void init(int level){
log_level = level;
log_file = fopen("log.txt", "a+");
}
void close(){
fprintf(log_file, "===========================================\n");
fclose(log_file);
}
void debug(const char* fmt, ...){
va_list argptr;
va_start(argptr, fmt);
write(DEBUG, fmt, argptr);
va_end(argptr);
}
void info(const char* fmt, ...){
va_list argptr;
va_start(argptr, fmt);
write(INFO, fmt, argptr);
va_end(argptr);
}
void err(const char* fmt, ...){
va_list argptr;
va_start(argptr, fmt);
write(ERROR, fmt, argptr);
va_end(argptr);
}
void write(int level, const char* fmt, va_list args){
if ( log_level <= level ){
vfprintf(log_file, fmt, args);
fflush(log_file);
}
}
bool is_init(){
return log_level > -1;
}
};