From: Christian Weiske Date: Fri, 17 Apr 2020 12:03:55 +0000 (+0200) Subject: Write errors to stderr X-Git-Url: https://git.cweiske.de/phinde.git/commitdiff_plain/0eb3df8b6ac67c5fa4562b6362425f4a473da644 Write errors to stderr --- diff --git a/src/phinde/Log.php b/src/phinde/Log.php index cc8cf12..36a126b 100644 --- a/src/phinde/Log.php +++ b/src/phinde/Log.php @@ -5,7 +5,7 @@ class Log { public static function error($msg) { - static::log($msg); + static::log($msg, STDERR); } public static function info($msg) @@ -15,7 +15,7 @@ class Log } } - public static function log($msg) + public static function log($msg, $stream = STDOUT) { if (isset($GLOBALS['phinde']['logfile']) && $GLOBALS['phinde']['logfile'] != '' @@ -25,7 +25,7 @@ class Log $msg . "\n", FILE_APPEND ); } else { - echo $msg . "\n"; + fwrite($stream, $msg . "\n"); } } }