mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 22:37:45 +00:00
51 lines
No EOL
796 B
C++
51 lines
No EOL
796 B
C++
#ifndef _LOGGER_H
|
|
#define _LOGGER_H
|
|
|
|
#include <boost/log/trivial.hpp>
|
|
|
|
namespace Core {
|
|
|
|
|
|
enum struct LoggingSeverity : uint8_t
|
|
{
|
|
trace = 0,
|
|
debug = 1,
|
|
info = 2,
|
|
warning = 3,
|
|
error = 4,
|
|
fatal = 5
|
|
};
|
|
|
|
class Logger
|
|
{
|
|
|
|
private:
|
|
boost::log::sources::severity_logger_mt< boost::log::trivial::severity_level > m_lg;
|
|
|
|
std::string m_logFile;
|
|
|
|
public:
|
|
Logger();
|
|
|
|
~Logger();
|
|
|
|
void init();
|
|
|
|
void Log(LoggingSeverity logSev, const std::string& text);
|
|
|
|
void error( const std::string& text );
|
|
void info( const std::string& text );
|
|
void debug( const std::string& text );
|
|
void fatal( const std::string& text );
|
|
|
|
void setLogPath(const std::string& logPath);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif |