From 0eb3df8b6ac67c5fa4562b6362425f4a473da644 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 17 Apr 2020 14:03:55 +0200 Subject: [PATCH] Write errors to stderr --- src/phinde/Log.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); } } } -- 2.30.2