mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-10 19:34:51 +01:00
Fix non-existing log method in HarbormasterManagementRestartWorkflow
Summary: In `HarbormasterManagementRestartWorkflow`, `logSkip()` is called. A method with such a name has never existed in `PhabricatorManagementWorkflow`. Given the five available `log*()` methods, replace the call with `logInfo()` which seems most appropriate. Test Plan: Run static code analysis which complains about `Call to an undefined method HarbormasterManagementRestartWorkflow::logSkip()`; read the code. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Tags: #almanac_drydock_harbormaster Differential Revision: https://we.phorge.it/D25742
This commit is contained in:
parent
0f4ab2413d
commit
38e359cb13
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ final class HarbormasterManagementRestartWorkflow
|
|||
|
||||
$count = count($builds);
|
||||
if (!$count) {
|
||||
$this->logSkip(
|
||||
$this->logInfo(
|
||||
pht('SKIP'),
|
||||
pht('No builds to restart.'));
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue