diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 16:14:33 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 16:14:33 +0000 |
commit | 51af6cbf2fa0e81ca96dd4ff0667b034260894b2 (patch) | |
tree | 255a276d8e3819f55540048aa1fdbfb75ee2106a /src/modules | |
parent | 06335d5a19e42b7b896d4b19a17bb758fb2cd76a (diff) |
Zap printfs
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9326 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_chanlog.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/modules/m_chanlog.cpp b/src/modules/m_chanlog.cpp index 480d169d6..5070f190a 100644 --- a/src/modules/m_chanlog.cpp +++ b/src/modules/m_chanlog.cpp @@ -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); |