2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cLog;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-01 03:32:14 -04:00
|
|
|
class cMCLogger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum eLogLevel
|
|
|
|
{
|
|
|
|
llRegular,
|
|
|
|
llInfo,
|
|
|
|
llWarning,
|
|
|
|
llError,
|
|
|
|
};
|
|
|
|
// tolua_end
|
|
|
|
|
|
|
|
/** Creates a logger with the default filename, "logs/LOG_<timestamp>.log" */
|
2013-02-03 15:37:13 -05:00
|
|
|
cMCLogger(void);
|
2013-10-12 05:26:42 -04:00
|
|
|
|
2014-04-01 03:32:14 -04:00
|
|
|
/** Creates a logger with the specified filename inside "logs" folder */
|
2014-07-17 10:33:09 -04:00
|
|
|
cMCLogger(const AString & a_FileName);
|
2013-10-12 05:26:42 -04:00
|
|
|
|
2014-07-17 10:33:09 -04:00
|
|
|
~cMCLogger();
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-04-01 03:32:14 -04:00
|
|
|
void Log (const char * a_Format, va_list a_ArgList) FORMATSTRING(2, 0);
|
|
|
|
void Info (const char * a_Format, va_list a_ArgList) FORMATSTRING(2, 0);
|
|
|
|
void Warn (const char * a_Format, va_list a_ArgList) FORMATSTRING(2, 0);
|
|
|
|
void Error(const char * a_Format, va_list a_ArgList) FORMATSTRING(2, 0);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-04-01 03:32:14 -04:00
|
|
|
/** Logs the simple text message at the specified log level. */
|
2014-07-17 10:33:09 -04:00
|
|
|
void LogSimple(const char * a_Text, eLogLevel a_LogLevel = llRegular);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-04-01 03:32:14 -04:00
|
|
|
static cMCLogger * GetInstance();
|
2012-06-14 09:06:06 -04:00
|
|
|
private:
|
2013-08-09 16:40:12 -04:00
|
|
|
enum eColorScheme
|
|
|
|
{
|
2013-08-10 06:44:39 -04:00
|
|
|
csRegular,
|
|
|
|
csInfo,
|
|
|
|
csWarning,
|
|
|
|
csError,
|
2013-08-09 16:40:12 -04:00
|
|
|
} ;
|
|
|
|
|
2013-10-12 05:26:42 -04:00
|
|
|
cCriticalSection m_CriticalSection;
|
|
|
|
cLog * m_Log;
|
|
|
|
static cMCLogger * s_MCLogger;
|
2014-04-26 12:21:49 -04:00
|
|
|
bool m_ShouldColorOutput;
|
2013-10-12 05:26:42 -04:00
|
|
|
|
|
|
|
|
2013-08-09 16:40:12 -04:00
|
|
|
/// Sets the specified color scheme in the terminal (TODO: if coloring available)
|
|
|
|
void SetColor(eColorScheme a_Scheme);
|
|
|
|
|
2013-08-10 06:44:39 -04:00
|
|
|
/// Resets the color back to whatever is the default in the terminal
|
|
|
|
void ResetColor(void);
|
|
|
|
|
2013-10-12 05:26:42 -04:00
|
|
|
/// Common initialization for all constructors, creates a logfile with the specified name and assigns s_MCLogger to this
|
|
|
|
void InitLog(const AString & a_FileName);
|
2014-07-17 10:33:09 -04:00
|
|
|
};
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-10-12 05:26:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-14 09:11:49 -04:00
|
|
|
extern void LOG(const char* a_Format, ...) FORMATSTRING(1, 2);
|
|
|
|
extern void LOGINFO(const char* a_Format, ...) FORMATSTRING(1, 2);
|
|
|
|
extern void LOGWARN(const char* a_Format, ...) FORMATSTRING(1, 2);
|
|
|
|
extern void LOGERROR(const char* a_Format, ...) FORMATSTRING(1, 2);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// In debug builds, translate LOGD to LOG, otherwise leave it out altogether:
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define LOGD LOG
|
|
|
|
#else
|
|
|
|
#define LOGD(...)
|
|
|
|
#endif // _DEBUG
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define LOGWARNING LOGWARN
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|