2013-01-04 23:31:51 +00:00
|
|
|
#ifndef _LOG_H_
|
|
|
|
#define _LOG_H_
|
|
|
|
|
|
|
|
#define LOG(level) \
|
|
|
|
if(level > Log::getReportingLevel()) ; \
|
|
|
|
else Log().get(level)
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
2013-05-14 19:45:56 +00:00
|
|
|
#include <iostream>
|
2013-01-04 23:31:51 +00:00
|
|
|
|
|
|
|
enum LogLevel { LogError, LogWarning, LogInfo, LogDebug };
|
|
|
|
|
|
|
|
class Log
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//Log();
|
|
|
|
~Log();
|
|
|
|
std::ostringstream& get(LogLevel level = LogInfo);
|
|
|
|
|
|
|
|
static LogLevel getReportingLevel();
|
|
|
|
static void setReportingLevel(LogLevel level);
|
|
|
|
|
|
|
|
static std::string getLogPath();
|
|
|
|
|
|
|
|
static void flush();
|
2013-01-08 02:24:59 +00:00
|
|
|
static void open();
|
2013-01-04 23:31:51 +00:00
|
|
|
static void close();
|
|
|
|
protected:
|
|
|
|
std::ostringstream os;
|
|
|
|
static FILE* file;
|
|
|
|
private:
|
|
|
|
static LogLevel reportingLevel;
|
|
|
|
static FILE* getOutput();
|
|
|
|
LogLevel messageLevel;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|