diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 14 |
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() |