-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.cpp
53 lines (41 loc) · 1007 Bytes
/
logger.cpp
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
#include "logger.h"
boost::filesystem::path Logger::logfile("log");
std::ofstream Logger::filedescr;
bool Logger::inited = false;
std::mutex Logger::locker;
Logger& Logger::Instance() {
static Logger s;
return s;
}
Logger::Logger(){
}
Logger::~Logger(){
filedescr.close();
}
int Logger::InitLog(std::string logpath){
std::lock_guard<std::mutex> lock(locker);
if (inited) {
return 1;
}
boost::filesystem::path bpath(logpath);
logfile = bpath;
filedescr.open(logpath);
return 0;
}
int Logger::InitLog(){
std::lock_guard<std::mutex> lock(locker);
if (inited) {
return 1;
}
filedescr.open(logfile.string());
return 0;
}
void Logger::Debug(const std::string& msg){
std::lock_guard<std::mutex> lock(locker);
filedescr << "DEBUG \t" << msg << std::endl;
filedescr.flush();
}
void Logger::Log(const std::string& msg){
std::lock_guard<std::mutex> lock(locker);
filedescr << "LOG \t" << msg << std::endl;
}