amx_logging cvar:

0 : no logging
   1 : standard logging; new file per mapchange (default)
   2 : standard logging; daily logfiles
   3 : logging into HL log files
This commit is contained in:
Pavol Marko 2004-04-22 08:09:17 +00:00
parent 8c4e8e20a5
commit 81cd9b4449

View File

@ -28,8 +28,6 @@
* version. * version.
*/ */
#include <extdll.h>
#include <meta_api.h>
#include <time.h> #include <time.h>
#include "amxmodx.h" #include "amxmodx.h"
@ -46,9 +44,9 @@ void AMXXLOG_Init()
CVAR_SET_STRING(init_amx_logging.name, "1"); CVAR_SET_STRING(init_amx_logging.name, "1");
} }
void AMXXLOG_MakeNewLogFile() void AMXXLOG_MapChange()
{ {
if (amx_logging && amx_logging->value == 0.0f) if (amx_logging && (amx_logging->value == 0.0f || amx_logging->value == 3.0f))
return; return;
// build filename // build filename
@ -63,6 +61,14 @@ void AMXXLOG_MakeNewLogFile()
mkdir(build_pathname("%s", g_log_dir.str())); mkdir(build_pathname("%s", g_log_dir.str()));
#endif #endif
if (amx_logging && amx_logging->value != 1.0f)
{
// 2.0f probably :)
g_AMXXLOG_LogFile.set(build_pathname("%s/L%02d%02d.log", g_log_dir.str(), curTime->tm_mon + 1, curTime->tm_mday));
AMXXLOG_Log("AMX Mod X log file started.");
}
else
{
int i = 0; int i = 0;
while (true) while (true)
{ {
@ -76,15 +82,31 @@ void AMXXLOG_MakeNewLogFile()
// Log logfile start // Log logfile start
AMXXLOG_Log("AMX Mod X log file started (file \"%s/L%02d%02d%03d.log\") (version \"%s\")", g_log_dir.str(), curTime->tm_mon + 1, curTime->tm_mday, i, AMX_VERSION); AMXXLOG_Log("AMX Mod X log file started (file \"%s/L%02d%02d%03d.log\") (version \"%s\")", g_log_dir.str(), curTime->tm_mon + 1, curTime->tm_mday, i, AMX_VERSION);
} }
}
void AMXXLOG_Log(const char *fmt, ...) void AMXXLOG_Log(const char *fmt, ...)
{ {
if (!amx_logging) if (!amx_logging)
return; return;
int logType = (int)amx_logging->value; int logType = (int)amx_logging->value;
static int lastLogType = -1;
if (lastLogType == -1)
lastLogType = logType;
if (lastLogType != logType)
{
// User changed logType
lastLogType = logType;
AMXXLOG_MapChange();
}
if (logType == 0) if (logType == 0)
{
lastLogType = logType;
return; return;
else if (logType == 1) }
else if (logType == 1 || logType == 2)
{ {
// build message // build message
// :TODO: Overflow possible here // :TODO: Overflow possible here
@ -114,7 +136,7 @@ void AMXXLOG_Log(const char *fmt, ...)
} }
// Create new logfile // Create new logfile
s_inCreatingLogFile = true; s_inCreatingLogFile = true;
AMXXLOG_MakeNewLogFile(); AMXXLOG_MapChange();
s_inCreatingLogFile = false; s_inCreatingLogFile = false;
} }
@ -123,7 +145,7 @@ void AMXXLOG_Log(const char *fmt, ...)
fclose(pF); fclose(pF);
print_srvconsole("L %s: %s\n", date, msg); print_srvconsole("L %s: %s\n", date, msg);
} }
else if (logType == 2) else if (logType == 3)
{ {
// build message // build message
// :TODO: Overflow possible here // :TODO: Overflow possible here
@ -139,4 +161,5 @@ void AMXXLOG_Log(const char *fmt, ...)
ALERT(at_logged, "[AMXX] Invalid %s value. Setting to 0\n", init_amx_logging.name); ALERT(at_logged, "[AMXX] Invalid %s value. Setting to 0\n", init_amx_logging.name);
CVAR_SET_FLOAT(init_amx_logging.name, 0.0f); CVAR_SET_FLOAT(init_amx_logging.name, 0.0f);
} }
lastLogType = logType;
} }