blob: 222ac52effb40a3e79cd8118738e678e5dcd3d54 [file] [log] [blame]
akmhoqueba094742014-02-28 11:47:21 -06001#ifndef NLSR_LOGGER_HPP
2#define NLSR_LOGGER_HPP
3
4#define BOOST_LOG_DYN_LINK 1
5
6#include <stdexcept>
7#include <string>
8#include <iostream>
9#include <sstream>
10#include <pwd.h>
11#include <cstdlib>
12#include <string>
13#include <unistd.h>
14#include <boost/format.hpp>
15#include <boost/smart_ptr/shared_ptr.hpp>
16#include <boost/date_time/posix_time/posix_time.hpp>
17#include <boost/date_time/local_time/local_time.hpp>
18#include <boost/log/common.hpp>
19#include <boost/log/expressions.hpp>
20#include <boost/log/attributes.hpp>
21#include <boost/log/sources/logger.hpp>
22#include <boost/log/sinks/sync_frontend.hpp>
23#include <boost/log/sinks/text_file_backend.hpp>
24
25namespace nlsr
26{
27
28 namespace logging = boost::log;
29 namespace attrs = boost::log::attributes;
30 namespace src = boost::log::sources;
31 namespace sinks = boost::log::sinks;
32 namespace expr = boost::log::expressions;
33 namespace keywords = boost::log::keywords;
34
35 using boost::shared_ptr;
36 using namespace std;
37
38
39 class NlsrLogger
40 {
41 public:
42 NlsrLogger()
43 {
44 }
45
46 void initNlsrLogger(std::string dirPath);
47
48 src::logger& getLogger()
49 {
50 return mLogger;
51 }
52
53 private:
54 string getEpochTime();
55 string getUserHomeDirectory();
56
57 private:
58 src::logger mLogger;
59 };
60
61}//namespace nlsr
62#endif