1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:55:55 +00:00

fix 'logging to...' output line not respecting quiet setting (update_daemon2.php)

This commit is contained in:
Jordan Galby
2019-02-12 19:14:23 +01:00
parent 874a2d2170
commit 487d06a20d

View File

@@ -159,9 +159,9 @@
}
if (isset($options["log"])) {
Debug::set_quiet(isset($options['quiet']));
Debug::set_logfile($options["log"]);
Debug::log("Logging to " . $options["log"]);
Debug::set_quiet(isset($options['quiet']));
} else {
if (isset($options['quiet'])) {
Debug::set_loglevel(Debug::$LOG_DISABLED);