diff options
author | Adam <Adam@anope.org> | 2011-04-19 23:42:16 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-04-19 23:42:16 -0400 |
commit | f601b045945cde1b6235055f33ed61b6d6435fcd (patch) | |
tree | a2f4f6e0387a6f4786add830cf81ba6aa45b6bfe /src/logger.cpp | |
parent | ca169489b252440213f68cd0901e8ffc8606960e (diff) |
Fixed logging messages with an empty category to everything
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index a74a219d9..51a8ce69c 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -310,7 +310,7 @@ void LogInfo::ProcessMessage(const Log *l) if (!this->HasType(l->Type)) return; - else if (!l->Category.empty() && !this->HasType(this->GetList(l->Type), l->Category)) + else if (!this->HasType(this->GetList(l->Type), l->Category)) return; if (!this->Sources.empty()) |