summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/dialplan/router.lua
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-01-17 12:03:57 +0100
committerspag <spag@golwen.net>2013-01-17 12:03:57 +0100
commita4c63280de43e820bfcf9f02d61f90a50fffff92 (patch)
tree9077f4671aa209b65a5247e37f618ace3660904e /misc/freeswitch/scripts/dialplan/router.lua
parent4bf20d36ed26746e0a7b2fc551e57337c8788c86 (diff)
debugging output
Diffstat (limited to 'misc/freeswitch/scripts/dialplan/router.lua')
-rw-r--r--misc/freeswitch/scripts/dialplan/router.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/dialplan/router.lua b/misc/freeswitch/scripts/dialplan/router.lua
index de543f3..e82d224 100644
--- a/misc/freeswitch/scripts/dialplan/router.lua
+++ b/misc/freeswitch/scripts/dialplan/router.lua
@@ -175,7 +175,7 @@ function Router.route_run(self, table_name, phone_number, find_first)
local route = self:route_match(routing_table[index], phone_number);
if route then
table.insert(routes, route);
- self.log:info('ROUTE ', #routes,' - ', table_name,'=', routing_table[index].id, '/', routing_table[index].name, ', destination: ', route.type, '=', route.id);
+ self.log:info('ROUTE ', #routes,' - ', table_name,'=', routing_table[index].id, '/', routing_table[index].name, ', destination: ', route.type, '=', route.id, ', destination_number: ', route.destination_number);
if find_first then
return route;
end