Differential D19085 Diff 45745 src/applications/harbormaster/step/HarbormasterBuildStepImplementation.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/step/HarbormasterBuildStepImplementation.php
| Show First 20 Lines • Show All 289 Lines • ▼ Show 20 Lines | $build_target | ||||
| ->newLog($label, 'http.head') | ->newLog($label, 'http.head') | ||||
| ->append($header_lines); | ->append($header_lines); | ||||
| $build_target | $build_target | ||||
| ->newLog($label, 'http.body') | ->newLog($label, 'http.body') | ||||
| ->append($body); | ->append($body); | ||||
| } | } | ||||
| protected function logSilencedCall( | |||||
| HarbormasterBuild $build, | |||||
| HarbormasterBuildTarget $build_target, | |||||
| $label) { | |||||
| $build_target | |||||
| ->newLog($label, 'silenced') | |||||
| ->append( | |||||
| pht( | |||||
| 'Declining to make service call because `phabricator.silent` is '. | |||||
| 'enabled in configuration.')); | |||||
| } | |||||
| /* -( Automatic Targets )-------------------------------------------------- */ | /* -( Automatic Targets )-------------------------------------------------- */ | ||||
| public function getBuildStepAutotargetStepKey() { | public function getBuildStepAutotargetStepKey() { | ||||
| return null; | return null; | ||||
| } | } | ||||
| Show All 10 Lines | |||||