summaryrefslogtreecommitdiff
path: root/htetc
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-06-16 23:31:27 -0700
committerIvan Kohler <ivan@freeside.biz>2015-06-16 23:31:27 -0700
commite2bfa8c0187b997d9ba903ef84268db63e917b97 (patch)
treeb536dd9192f1744fe419d6a7c02d21ecccb95d71 /htetc
parent1bed417ccae59ae7cb9879f35b356ae4716f6ff2 (diff)
web access logging to DB
Diffstat (limited to 'htetc')
-rw-r--r--htetc/handler.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl
index 18108ab..45afafb 100644
--- a/htetc/handler.pl
+++ b/htetc/handler.pl
@@ -7,6 +7,7 @@ use warnings;
use FS::Mason qw( mason_interps );
use FS::Trace;
use FS::Conf;
+use FS::access_user_log;
$FS::Conf::conf_cache_enabled = 1; # enable FS::Conf caching for performance
@@ -107,7 +108,6 @@ sub handler
return -1 if defined( $r->content_type )
&& $r->content_type !~ m!(^text/|\bxml\b)!io;
-
local $SIG{__WARN__};
local $SIG{__DIE__};
@@ -139,6 +139,8 @@ sub handler
}
+ FS::access_user_log->insert_new_path( $r->uri );
+
FS::Trace->log('handling request');
my %session;
my $status;