summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-07-24 04:16:22 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-07-24 04:16:22 +0000
commit5078667542f9770ca4c9ffce771a776c66d6d3e8 (patch)
tree91f17623c4d7dc392d187d738821ae13c4a8cedc /phpfspot.class.php
parent9bc8b2603814ea36009f0cdbc2d56150417483c1 (diff)
issue44, first code changes for error logging
git-svn-id: file:///var/lib/svn/phpfspot/trunk@248 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php14
1 files changed, 12 insertions, 2 deletions
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 "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
- print $text;
+ switch($this->cfg->logging) {
+ case 'display':
+ print "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
+ print $text;
+ break;
+ case 'errorlog':
+ error_log($text);
+ break;
+ case 'logfile':
+ error_log($text, 3, $his->cfg->log_file);
+ break;
+ }
} // _warning()