summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-12 18:19:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-12 18:19:33 +0000
commit3a2679d0e4c41c326cecdcd2f847bdcc4f2681ca (patch)
treeee2505f73024ad1ed1e57e3f98d7d8bfd1031400
parent0a9e0fa169da8cd98a0d41151347febc92605e13 (diff)
Removal of some trivial debug output
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2355 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/channels.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 6af23d3b0..ce4718410 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -168,8 +168,7 @@ void chanrec::SetCustomModeParam(char mode,char* parameter,bool mode_on)
bool chanrec::IsCustomModeSet(char mode)
{
- log(DEBUG,"Checking ISCustomModeSet: %c %s",mode,this->custom_modes);
- return (strchr(this->custom_modes,mode) != 0);
+ return (strchr(this->custom_modes,mode));
}
std::string chanrec::GetModeParameter(char mode)