summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-02-07 23:57:45 +0100
committerspag <spag@golwen.net>2013-02-07 23:57:45 +0100
commit5aefe7bb21d7b18f5653db439c61f7540e04e4e5 (patch)
treebb5aca90528e6eb8d088bf23e49be561b36b2dc8 /misc
parent0b3da2c8539ba9c83dbc025aa810d5924033ea6b (diff)
log level
Diffstat (limited to 'misc')
-rw-r--r--misc/freeswitch/scripts/dialplan/dtmf.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/freeswitch/scripts/dialplan/dtmf.lua b/misc/freeswitch/scripts/dialplan/dtmf.lua
index 0094d05..4dbd35f 100644
--- a/misc/freeswitch/scripts/dialplan/dtmf.lua
+++ b/misc/freeswitch/scripts/dialplan/dtmf.lua
@@ -33,9 +33,9 @@ function Dtmf.detect(self, caller, sequence, digit, duration, calee)
caller.dtmf_digits = sequence.digits;
if calee then
- self.log:info('DTMF_RECEIVER callee - digit: [', digit, '][', duration, '], sequence: ', sequence.digits);
+ self.log:debug('DTMF_RECEIVER callee - digit: [', digit, '][', duration, '], sequence: ', sequence.digits);
else
- self.log:info('DTMF_RECEIVER caller - digit: [', digit, '][', duration, '], sequence: ', sequence.digits);
+ self.log:debug('DTMF_RECEIVER caller - digit: [', digit, '][', duration, '], sequence: ', sequence.digits);
end
local route = self.router:route_run('dtmf', true);