From de75ba60a58e87778551a7a7258352a4cc30fddc Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Mon, 25 Mar 2019 22:07:12 +0100 Subject: api/taskman: Improve logging --- api.php | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'api.php') diff --git a/api.php b/api.php index df54d7f5..9e43a42a 100644 --- a/api.php +++ b/api.php @@ -57,14 +57,23 @@ if (Module::isAvailable($module)) { if (!file_exists($module)) { Util::traceError('Invalid module, or module without API: ' . $module); } -Header('Expires: Wed, 29 Mar 2007 09:56:28 GMT'); -Header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); -Header("Cache-Control: post-check=0, pre-check=0", false); -Header("Pragma: no-cache"); - -Header('Content-Type: text/plain; charset=utf-8'); - -ob_start('ob_gzhandler'); +if (php_sapi_name() === 'cli') { + register_shutdown_function(function() { + if (class_exists('Message', false)) { + $text = Message::asString(); + if (!empty($text)) { + error_log("The following error messages were generated:\n" . $text); + } + } + }); +} else { + Header('Expires: Wed, 29 Mar 2007 09:56:28 GMT'); + Header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); + Header("Cache-Control: post-check=0, pre-check=0", false); + Header("Pragma: no-cache"); + Header('Content-Type: text/plain; charset=utf-8'); + ob_start('ob_gzhandler'); +} // Load module - it will execute pre-processing, or act upon request parameters require_once($module); -- cgit v1.2.3-55-g7522