Revert to STDOUT for cron messages (#2979)

#fix https://github.com/FreshRSS/FreshRSS/issues/2975
pull/2972/head^2
Alexandre Alapetite 4 years ago committed by GitHub
parent 554ac88d98
commit 6f3e5d99b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      app/actualize_script.php

@ -4,15 +4,15 @@ require(__DIR__ . '/../cli/_cli.php');
/**
* Writes to FreshRSS admin log, and if it is not already done by default,
* writes to syslog (only if simplepie_syslog_enabled in FreshRSS configuration) and to STDERR
* writes to syslog (only if simplepie_syslog_enabled in FreshRSS configuration) and to STDOUT
*/
function notice($message) {
Minz_Log::notice($message, ADMIN_LOG);
if (!COPY_LOG_TO_SYSLOG && SIMPLEPIE_SYSLOG_ENABLED) {
syslog(LOG_NOTICE, $message);
}
if (defined('STDERR') && !COPY_SYSLOG_TO_STDERR) {
fwrite(STDERR, $message . "\n"); //Unbuffered
if (defined('STDOUT') && !COPY_SYSLOG_TO_STDERR) {
fwrite(STDOUT, $message . "\n"); //Unbuffered
}
}

Loading…
Cancel
Save