private $timeout = false;
private $settings;
+ private $log_level;
+ private $log_method;
private $header = '<!DOCTYPE html>
<html>
<head>
public function __construct() {
global $CFG;
+ $this->log("Init Utils", 4);
+
+ if (isset($CFG->log_level)) {
+ $this->log_level = $CFG->log_level;
+ } else {
+ $this->log_level = 1;
+ }
+
+ if (isset($CFG->log_method)) {
+ $this->log_method = $CFG->log_method;
+ } else {
+ $this->log_level = 'syslog';
+ }
+
$this->startSession();
if (! isset($_SESSION['settings'])) {
}
}
+ private function log($message, $level = 1) {
+ global $CFG;
+
+ if ($level > $this->log_level)
+ return;
+
+ $time = date('c');
+ $msg = "[$time] $message";
+
+ $priority = LOG_INFO;
+ switch ($level) {
+ case 1: $priority = LOG_ERR; break;
+ case 2: $priority = LOG_WARNING; break;
+ case 3: $priority = LOG_INFO; break;
+ case 4: $priority = LOG_DEBUG; break;
+ }
+
+ switch ($this->log_method) {
+ case 'file':
+ case 'stderr':
+ case 'syslog':
+ syslog($priority,$msg);
+ break;
+ }
+ }
+
private function initSettings() {
if ('' == session_id()) {
$this->startSession();