From 5078667542f9770ca4c9ffce771a776c66d6d3e8 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Tue, 24 Jul 2007 04:16:22 +0000 Subject: issue44, first code changes for error logging git-svn-id: file:///var/lib/svn/phpfspot/trunk@248 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'phpfspot.class.php') diff --git a/phpfspot.class.php b/phpfspot.class.php index a7290b6..0676065 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1413,8 +1413,18 @@ class PHPFSPOT { public function _warning($text) { - print "\"warning\"\n"; - print $text; + switch($this->cfg->logging) { + case 'display': + print "\"warning\"\n"; + print $text; + break; + case 'errorlog': + error_log($text); + break; + case 'logfile': + error_log($text, 3, $his->cfg->log_file); + break; + } } // _warning() -- cgit v1.2.3-18-g5258