@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make `bin/phd debug` quieter by default

Summary:
By default, `bin/phd debug` activates `--trace`, which is incredibly verbose.

Instead, be moderately verbose by default, and only include tracing if `--trace` was passed to `bin/phd debug`.

See also D15422.

Test Plan:
- Ran `bin/phd debug task`, got moderate amount of most useful debug output.
- Ran `bin/phd debug task --trace`, got very verbose, detailed low-level debug output.

Reviewers: chad

Reviewed By: chad

Differential Revision: https://secure.phabricator.com/D15423

+3 -1
+3 -1
src/applications/daemon/management/PhabricatorDaemonManagementWorkflow.php
··· 158 158 159 159 $this->printLaunchingDaemons($daemons, $debug); 160 160 161 + $trace = PhutilArgumentParser::isTraceModeEnabled(); 162 + 161 163 $flags = array(); 162 - if ($debug || PhabricatorEnv::getEnvConfig('phd.trace')) { 164 + if ($trace || PhabricatorEnv::getEnvConfig('phd.trace')) { 163 165 $flags[] = '--trace'; 164 166 } 165 167