passing --log option to update daemon processes

This commit is contained in:
Roland Angerer 2013-09-02 08:54:20 +02:00
parent f73e03e000
commit 0f0bbe735d
1 changed files with 2 additions and 1 deletions

View File

@ -162,8 +162,9 @@
if (isset($options["daemon"])) {
while (true) {
$quiet = (isset($options["quiet"])) ? "--quiet" : "";
$log = isset($options['log']) ? '--log '.$options['log'] : '';
passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet");
passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet $log");
_debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
sleep(DAEMON_SLEEP_INTERVAL);
}