diff options
author | spag <spag@golwen.net> | 2012-12-23 16:04:05 +0100 |
---|---|---|
committer | spag <spag@golwen.net> | 2012-12-23 16:04:05 +0100 |
commit | 55a0d5ce38f99226174f358279c02178eacd75d7 (patch) | |
tree | 8ad5fe87d51760bf8fa76bd60337c25ff16726f5 /misc/freeswitch/scripts/dialplan/functions.lua | |
parent | f425280a6312638f364f6ae8d915a30d78a8dce4 (diff) |
login/logout methods
Diffstat (limited to 'misc/freeswitch/scripts/dialplan/functions.lua')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/functions.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/dialplan/functions.lua b/misc/freeswitch/scripts/dialplan/functions.lua index c104f89..9a89857 100644 --- a/misc/freeswitch/scripts/dialplan/functions.lua +++ b/misc/freeswitch/scripts/dialplan/functions.lua @@ -31,7 +31,7 @@ function Functions.dialplan_function(self, caller, dialed_number) local fid = tostring(parameters[2]); local result = { continue = false, code = 404, phrase = 'Function not found', no_cdr = true }; - self.log:debug('DIALPLAN_DUNCTION - execute: ', dialed_number); + self.log:debug('DIALPLAN_FUNCTION - execute: ', dialed_number); if fid == "ta" then result = self:transfer_all(caller, parameters[3]); |