From 7c0a77920db0d64c1a3c0f1413fd64c62ae8cefa Mon Sep 17 00:00:00 2001 From: om Date: Thu, 29 Jun 2006 08:30:25 +0000 Subject: Change log() to a #define, the real symbol is now do_log(), the new macro auto-prefixes all log messages with the file and line number where log() was called - should be nice for debugging and telling wtf is coming from what.Currently uses a (probably very standard) g++ extension to make the macro work. Shouldn't be an issue. You must make clean and rebuild all of insp. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4081 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_pong.cpp | 1 + src/cmd_topic.cpp | 1 + src/helperfuncs.cpp | 2 +- src/socketengine.cpp | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/cmd_pong.cpp b/src/cmd_pong.cpp index cc708ee80..76acfbccd 100644 --- a/src/cmd_pong.cpp +++ b/src/cmd_pong.cpp @@ -17,6 +17,7 @@ #include "users.h" #include "commands.h" #include "commands/cmd_pong.h" +#include "helperfuncs.h" void cmd_pong::Handle (char **parameters, int pcnt, userrec *user) { diff --git a/src/cmd_topic.cpp b/src/cmd_topic.cpp index 8cad4e329..191cecb0f 100644 --- a/src/cmd_topic.cpp +++ b/src/cmd_topic.cpp @@ -21,6 +21,7 @@ #include "message.h" #include "commands.h" #include "commands/cmd_topic.h" +#include "helperfuncs.h" extern ServerConfig* Config; extern int MODCOUNT; diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index d0009328c..7c3b8c3ea 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -67,7 +67,7 @@ static time_t LAST = 0; * Write a line of text `text' to the logfile (and stdout, if in nofork) if the level `level' * is greater than the configured loglevel. */ -void log(int level, char *text, ...) +void do_log(int level, const char *text, ...) { va_list argsPtr; char textbuffer[MAXBUF]; diff --git a/src/socketengine.cpp b/src/socketengine.cpp index 976f578fd..886e2b0d0 100644 --- a/src/socketengine.cpp +++ b/src/socketengine.cpp @@ -28,6 +28,7 @@ #include #include #include "socketengine.h" +#include "helperfuncs.h" char ref[MAX_DESCRIPTORS]; -- cgit v1.2.3