X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/b9740e8a9a77eafcaf7aacd530af23fa8dbcb9f9..7635f647ec7dcdef51684b21601ee0930ea2bc5b:/SL/Dispatcher.pm diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 828dc1f1a..93d3a18e6 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -209,6 +209,7 @@ sub handle_request { my %routing; eval { %routing = _route_request($ENV{SCRIPT_NAME}); 1; } or return; ($routing_type, $script_name, $action) = @routing{qw(type controller action)}; + $::lxdebug->log_request($routing_type, $script_name, $action); $::request->type(lc($routing{request_type} || 'html'));