]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Zap printfs
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 4 Apr 2008 16:14:33 +0000 (16:14 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 4 Apr 2008 16:14:33 +0000 (16:14 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9326 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_chanlog.cpp

index 480d169d6292aea7c73767706e2b2e128e7a4f46..5070f190a7cac59b4b70fc31e57f05891ba07c6c 100644 (file)
@@ -28,7 +28,6 @@ class ChannelLogStream : public LogStream
                Channel *c = ServerInstance->FindChan(channel);
                static bool Logging = false;
 
-printf("I got called\n");
                if (loglevel < this->loglvl)
                        return;
 
@@ -117,9 +116,6 @@ class ModuleChanLog : public Module
                        }
 
                        std::string target = Conf.ReadValue("log", "target", index);
-
-printf("looking at tag with method: %s type: %s level: %s target: %s", method.c_str(), type.c_str(), level.c_str(), target.c_str());
-
                        ChannelLogStream* c = new ChannelLogStream(ServerInstance, loglevel, target);
                        ServerInstance->Logs->AddLogTypes(type, c, true);
                        cls.push_back(c);