X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/6df4b8055a0e63b554ed211760ab1aa5cb431306..9d35b77325b30611cc1fc29fadd177dca7f56acc:/config.php?ds=sidebyside diff --git a/config.php b/config.php index 2380794..da1e02e 100644 --- a/config.php +++ b/config.php @@ -1,5 +1,6 @@ session_timeout = 60; +// Log level +// 0 = no logging +// 1 = error +// 2 = warning +// 3 = info +// 4 = debug +// Default log level is error +$CFG->log_level = 3; + +// Log method +// stderr = Log to stand error +// file = Log to file. Requires write permission +// syslog = syslog +// Default log method is syslog +$CFG->log_method = 'syslog'; + +// File to log to if log method is file +// Both relative and absolut path is accepted +// If path is relative root is $CFG->root +// Default file is $CFG->root.qtadmin.log +$CFG->log_file = 'qtadmin.log'; ?>