blob: 119f17255e202d435526952cb566a1621e141806 [file] [log] [blame]
akmhoque85d88332014-02-17 21:11: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 logging = boost::log;
26namespace attrs = boost::log::attributes;
27namespace src = boost::log::sources;
28namespace sinks = boost::log::sinks;
29namespace expr = boost::log::expressions;
30namespace keywords = boost::log::keywords;
31
32using boost::shared_ptr;
33using namespace std;
34
35
36
37class NlsrLogger
38{
39public:
40 NlsrLogger()
41 {
42 }
43
44 void initNlsrLogger(std::string dirPath);
45
46 boost::log::sources::logger& getLogger()
47 {
48 return mLogger;
49 }
50
51private:
52 string getEpochTime();
53 string getUserHomeDirectory();
54
55private:
56 boost::log::sources::logger mLogger;
57};
58
59#endif