From eb2e28b0cfcf25b792c23951024594e1bbb69ef6 Mon Sep 17 00:00:00 2001 From: w00t Date: Fri, 4 Apr 2008 15:40:33 +0000 Subject: Remove deprecated InspIRCd::Log() method so people don't use it etc git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9320 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/helperfuncs.cpp | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/helperfuncs.cpp') diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 465f55d6f..67faee8f5 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -18,27 +18,6 @@ #include "xline.h" #include "exitcodes.h" -/** Log() - * 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 InspIRCd::Log(int level, const char* text, ...) -{ - va_list argsPtr; - char textbuffer[65536]; - - va_start(argsPtr, text); - vsnprintf(textbuffer, 65536, text, argsPtr); - va_end(argsPtr); - - this->Log(level, std::string(textbuffer)); -} - -void InspIRCd::Log(int level, const std::string &text) -{ - this->Logs->Log("DEPRECATED", level, "Deprecated use of InspIRCd::Log(), message = %s", text.c_str()); -} - std::string InspIRCd::GetServerDescription(const char* servername) { std::string description; -- cgit v1.2.3