summaryrefslogtreecommitdiff
path: root/src/channels.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/channels.cpp')
-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)