mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// sysLogger.h - Log handling class
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef SYSLOGGER_H
|
|
#define SYSLOGGER_H
|
|
|
|
// wxWindows headers
|
|
#include <wx/wx.h>
|
|
|
|
// App headers
|
|
|
|
enum LOG_LEVEL
|
|
{
|
|
LOG_NONE = 0,
|
|
LOG_ERRORS = 1,
|
|
LOG_NOTICE = 2,
|
|
LOG_SQL = 3,
|
|
LOG_DEBUG = 4
|
|
};
|
|
|
|
// Class declarations
|
|
class sysLogger : public wxLog
|
|
{
|
|
public:
|
|
#if wxCHECK_VERSION(2, 9, 0)
|
|
void DoLogTextAtLevel(wxLogLevel level, const wxString &msg);
|
|
#else
|
|
virtual void DoLog(wxLogLevel level, const wxChar *msg, time_t timestamp);
|
|
#endif
|
|
|
|
static wxLogLevel logLevel;
|
|
static wxString logFile;
|
|
|
|
private:
|
|
void WriteLog(const wxString &msg);
|
|
bool SilenceMessage(const wxString &msg);
|
|
};
|
|
|
|
#define wxLOG_Notice (wxLOG_User+1)
|
|
#define wxLOG_Sql (wxLOG_User+2)
|
|
#define wxLOG_QuietError (wxLOG_User+3)
|
|
#define wxLOG_Script (wxLOG_User+4)
|
|
#define wxLOG_ScriptVerbose (wxLOG_User+5)
|
|
|
|
#if wxCHECK_VERSION(2, 9, 0)
|
|
|
|
#define wxLogNotice wxDO_LOG(Notice)
|
|
#define wxLogSql wxDO_LOG(Sql)
|
|
#define wxLogQuietError wxDO_LOG(QuietError)
|
|
#define wxLogScript wxDO_LOG(Script)
|
|
#define wxLogScriptVerbose wxDO_LOG(ScriptVerbose)
|
|
|
|
#else
|
|
|
|
#define DECLARE_INT_LOG_FUNCTION(level) \
|
|
extern void wxVLog##level(const wxChar *szFormat, va_list argptr); \
|
|
extern void wxLog##level(const wxChar *szFormat, ...)
|
|
|
|
DECLARE_INT_LOG_FUNCTION(Notice);
|
|
DECLARE_INT_LOG_FUNCTION(Sql);
|
|
DECLARE_INT_LOG_FUNCTION(QuietError);
|
|
DECLARE_INT_LOG_FUNCTION(Script);
|
|
DECLARE_INT_LOG_FUNCTION(ScriptVerbose);
|
|
|
|
#endif
|
|
|
|
|
|
#endif // SYSLOGGER_H
|
|
|