diff options
author | Peter Kozak <spag@golwen.net> | 2013-03-15 08:41:58 -0400 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-03-15 08:41:58 -0400 |
commit | 8b4c7759dc4b589dd68ea96bfebdd51051526c9d (patch) | |
tree | 01111df0307830adfcabf9c008d9bfc062322fb4 /misc/freeswitch/scripts | |
parent | 5aa4b1351d34f138365f07995d704ae4a7e46e4a (diff) |
display auth_account_id
Diffstat (limited to 'misc/freeswitch/scripts')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/dialplan.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/dialplan/dialplan.lua b/misc/freeswitch/scripts/dialplan/dialplan.lua index e887610..ac564d9 100644 --- a/misc/freeswitch/scripts/dialplan/dialplan.lua +++ b/misc/freeswitch/scripts/dialplan/dialplan.lua @@ -185,7 +185,7 @@ function Dialplan.retrieve_caller_data(self) self.caller:set_auth_account(self.caller.auth_account); end else - self.log:info('CALLER_DATA - no data - unauthenticated call: ', self.caller.auth_account_type, '/', self.caller.auth_account_uuid); + self.log:info('CALLER_DATA - no data - unauthenticated call: ', self.caller.auth_account_type, '=', self.caller.auth_account_id, '/', self.caller.auth_account_uuid); end if not common.str.blank(self.caller.account_type) and not common.str.blank(self.caller.account_uuid) then |