diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_chanlog.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/modules/m_chanlog.cpp b/src/modules/m_chanlog.cpp index eb2fe8118..4a8a41cb0 100644 --- a/src/modules/m_chanlog.cpp +++ b/src/modules/m_chanlog.cpp @@ -27,7 +27,9 @@ class ChannelLogStream : public LogStream { Channel *c = ServerInstance->FindChan(channel); - if (loglevel < this->loglvl) return; +printf("I got called\n"); + if (loglevel < this->loglvl) + return; if (c) { @@ -72,8 +74,9 @@ class ModuleChanLog : public Module { std::string method = Conf->ReadValue("log", "method", index); - if (method != "file") - continue; + + //if (method != "file") + // continue; std::string type = Conf->ReadValue("log", "type", index); std::string level = Conf->ReadValue("log", "level", index); @@ -102,6 +105,9 @@ 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); |