mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
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:
parent
8c4e8e20a5
commit
81cd9b4449
@ -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,18 +61,27 @@ void AMXXLOG_MakeNewLogFile()
|
|||||||
mkdir(build_pathname("%s", g_log_dir.str()));
|
mkdir(build_pathname("%s", g_log_dir.str()));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int i = 0;
|
if (amx_logging && amx_logging->value != 1.0f)
|
||||||
while (true)
|
|
||||||
{
|
{
|
||||||
g_AMXXLOG_LogFile.set(build_pathname("%s/L%02d%02d%03d.log", g_log_dir.str(), curTime->tm_mon + 1, curTime->tm_mday, i));
|
// 2.0f probably :)
|
||||||
FILE *pTmpFile = fopen(g_AMXXLOG_LogFile.str(), "r"); // open for reading to check whether the file exists
|
g_AMXXLOG_LogFile.set(build_pathname("%s/L%02d%02d.log", g_log_dir.str(), curTime->tm_mon + 1, curTime->tm_mday));
|
||||||
if (!pTmpFile)
|
AMXXLOG_Log("AMX Mod X log file started.");
|
||||||
break;
|
}
|
||||||
fclose(pTmpFile);
|
else
|
||||||
++i;
|
{
|
||||||
|
int i = 0;
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
g_AMXXLOG_LogFile.set(build_pathname("%s/L%02d%02d%03d.log", g_log_dir.str(), curTime->tm_mon + 1, curTime->tm_mday, i));
|
||||||
|
FILE *pTmpFile = fopen(g_AMXXLOG_LogFile.str(), "r"); // open for reading to check whether the file exists
|
||||||
|
if (!pTmpFile)
|
||||||
|
break;
|
||||||
|
fclose(pTmpFile);
|
||||||
|
++i;
|
||||||
|
}
|
||||||
|
// 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);
|
||||||
}
|
}
|
||||||
// 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);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AMXXLOG_Log(const char *fmt, ...)
|
void AMXXLOG_Log(const char *fmt, ...)
|
||||||
@ -82,9 +89,24 @@ 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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user