diff --git a/src/applications/daemon/management/PhabricatorDaemonManagementStatusWorkflow.php b/src/applications/daemon/management/PhabricatorDaemonManagementStatusWorkflow.php index 1f7ed951cb..d5af149869 100644 --- a/src/applications/daemon/management/PhabricatorDaemonManagementStatusWorkflow.php +++ b/src/applications/daemon/management/PhabricatorDaemonManagementStatusWorkflow.php @@ -1,57 +1,57 @@ setName('status') ->setSynopsis(pht('Show daemon processes on this host.')); } public function execute(PhutilArgumentParser $args) { $process_refs = $this->getOverseerProcessRefs(); if (!$process_refs) { $instance = $this->getInstance(); if ($instance !== null) { $this->logInfo( pht('NO DAEMONS'), pht( 'There are no running daemon processes for the current '. 'instance ("%s").', $instance)); } else { - $this->writeInfo( + $this->logInfo( pht('NO DAEMONS'), pht('There are no running daemon processes.')); } return 1; } $table = id(new PhutilConsoleTable()) ->addColumns( array( 'pid' => array( 'title' => pht('PID'), ), 'command' => array( 'title' => pht('Command'), ), )); foreach ($process_refs as $process_ref) { $table->addRow( array( 'pid' => $process_ref->getPID(), 'command' => $process_ref->getCommand(), )); } $table->draw(); return 0; } }