Subversion Repositories logviewer

Rev

Rev 3 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
 
3
define('COUNT', 200);
4
 
5
define('MAXYEARS', 1);
6
 
7
#define('apache_log_locations', array('/home/*/log/error*.log*', '/home/*/hosts/*/log/error*.log*'));
8
define('apache_log_locations', array());
9
 
10
define('php_log_locations', array('/home/*/log/php_error*.log*', '/home/*/hosts/*/log/php_error*.log*'/* , '/var/log/php/error.log*' */));
11
 
12
// 0 = No source is displayed
13
// 1 = Columns "source" (=logfile) and "module" (module)
14
// 2 = Column "user" which tries to find out the user's home dir from the logfile
15
define('SOURCE_STYLE', 2);
16