File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {
452
452
453
453
if ($shouldInclude ) {
454
454
455
- Write-Host $includeMsg
455
+ LogInfo $includeMsg
456
456
$packagesWithChanges += $pkg
457
457
458
458
if ($pkg.AdditionalValidationPackages ) {
@@ -479,7 +479,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {
479
479
480
480
if ($pkg.Name -notin $existingPackageNames ) {
481
481
$pkg.IncludedForValidation = $true
482
- Write-Host " Including '$ ( $pkg.Name ) ' for validation only because it is a dependency of another package."
482
+ LogInfo " Including '$ ( $pkg.Name ) ' for validation only because it is a dependency of another package."
483
483
$packagesWithChanges += $pkg
484
484
}
485
485
}
@@ -491,7 +491,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {
491
491
$additionalPackages = & $AdditionalValidationPackagesFromPackageSetFn $packagesWithChanges $diff $allPackageProperties
492
492
$packagesWithChanges += $additionalPackages
493
493
foreach ($pkg in $additionalPackages ) {
494
- Write-Host " Including '$ ( $pkg.Name ) ' from the additional validation package set."
494
+ LogInfo " Including '$ ( $pkg.Name ) ' from the additional validation package set."
495
495
}
496
496
}
497
497
You can’t perform that action at this time.
0 commit comments