Differential D21426 Diff 50984 src/applications/daemon/management/PhabricatorDaemonManagementWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/daemon/management/PhabricatorDaemonManagementWorkflow.php
| Show First 20 Lines • Show All 110 Lines • ▼ Show 20 Lines | if (!$run_as_current_user) { | ||||
| } | } | ||||
| } | } | ||||
| $this->printLaunchingDaemons($daemons, $debug); | $this->printLaunchingDaemons($daemons, $debug); | ||||
| $trace = PhutilArgumentParser::isTraceModeEnabled(); | $trace = PhutilArgumentParser::isTraceModeEnabled(); | ||||
| $flags = array(); | $flags = array(); | ||||
| if ($trace || PhabricatorEnv::getEnvConfig('phd.trace')) { | if ($trace) { | ||||
| $flags[] = '--trace'; | $flags[] = '--trace'; | ||||
| } | } | ||||
| if ($debug || PhabricatorEnv::getEnvConfig('phd.verbose')) { | if ($debug) { | ||||
| $flags[] = '--verbose'; | $flags[] = '--verbose'; | ||||
| } | } | ||||
| $instance = $this->getInstance(); | $instance = $this->getInstance(); | ||||
| if ($instance) { | if ($instance) { | ||||
| $flags[] = '-l'; | $flags[] = '-l'; | ||||
| $flags[] = $instance; | $flags[] = $instance; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 480 Lines • Show Last 20 Lines | |||||