From e91d5023f3ace4bb80d197621d6dc20b6e293641 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 10 Aug 2006 16:56:03 +0000 Subject: Removal of Server::Log -- not much ever used it anyway with the ability to use log(). log() macro still exists, and calls InspIRCd::Log() git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4845 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_foobar.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/modules/m_foobar.cpp') diff --git a/src/modules/m_foobar.cpp b/src/modules/m_foobar.cpp index 6db01bc03..93b1848fe 100644 --- a/src/modules/m_foobar.cpp +++ b/src/modules/m_foobar.cpp @@ -20,6 +20,7 @@ using namespace std; #include "channels.h" #include "modules.h" #include "helperfuncs.h" +#include "inspircd.h" /* $ModDesc: A dummy module for testing */ @@ -67,7 +68,7 @@ class ModuleFoobar : public Module // method called when a user connects std::string b = user->nick; - Srv->Log(DEBUG,"Foobar: User connecting: " + b); + log(DEBUG,"Foobar: User connecting: "+b); } virtual void OnUserQuit(userrec* user, const std::string &reason) @@ -75,7 +76,7 @@ class ModuleFoobar : public Module // method called when a user disconnects std::string b = user->nick; - Srv->Log(DEBUG,"Foobar: User quitting: " + b); + log(DEBUG,"Foobar: User quitting: "+b); } virtual void OnUserJoin(userrec* user, chanrec* channel) @@ -84,7 +85,7 @@ class ModuleFoobar : public Module std::string c = channel->name; std::string b = user->nick; - Srv->Log(DEBUG,"Foobar: User " + b + " joined " + c); + log(DEBUG,"Foobar: User "+b+" joined "+c); } virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partreason) @@ -93,7 +94,7 @@ class ModuleFoobar : public Module std::string c = channel->name; std::string b = user->nick; - Srv->Log(DEBUG,"Foobar: User " + b + " parted " + c); + log(DEBUG,"Foobar: User "+b+" parted "+c); } }; -- cgit v1.3.1-10-gc9f91