Skip to content

Commit 7a78f58

Browse files
Clean-up some noisy logging (Azure#38784)
Co-authored-by: Wes Haggard <[email protected]>
1 parent 768c71c commit 7a78f58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ function FindOrCreatePackageGroupParent($serviceName, $packageDisplayName, $outp
529529
{
530530
$existingItem = FindParentWorkItem $serviceName $packageDisplayName -outputCommand $outputCommand -ignoreReleasePlannerTests $ignoreReleasePlannerTests -tag $tag
531531
if ($existingItem) {
532-
Write-Host "Found existing product work item [$($existingItem.id)]"
532+
Write-Verbose "Found existing product work item [$($existingItem.id)]"
533533
$newparentItem = FindOrCreateServiceParent $serviceName -outputCommand $outputCommand -ignoreReleasePlannerTests $ignoreReleasePlannerTests -tag $tag
534534
UpdateWorkItemParent $existingItem $newParentItem
535535
return $existingItem
@@ -552,7 +552,7 @@ function FindOrCreateServiceParent($serviceName, $outputCommand = $true, $ignore
552552
{
553553
$serviceParent = FindParentWorkItem $serviceName -packageDisplayName $null -outputCommand $outputCommand -ignoreReleasePlannerTests $ignoreReleasePlannerTests -tag $tag
554554
if ($serviceParent) {
555-
Write-Host "Found existing service work item [$($serviceParent.id)]"
555+
Write-Verbose "Found existing service work item [$($serviceParent.id)]"
556556
return $serviceParent
557557
}
558558

@@ -1014,4 +1014,4 @@ function UpdateValidationStatus($pkgvalidationDetails, $BuildDefinition, $Pipeli
10141014
$workItem = UpdateWorkItem -id $workItem.id -fields $fields
10151015
Write-Host "[$($workItem.id)]$LanguageDisplayName - $pkgName($versionMajorMinor) - Updated"
10161016
return $true
1017-
}
1017+
}

0 commit comments

Comments
 (0)