This commit is contained in:
Freddy Kristiansen 2021-08-29 12:13:08 +02:00
Родитель 51b03974c2
Коммит eb1be422c9
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -3,7 +3,10 @@
$value
)
if ($value -is [switch]) {
if ($value -eq $null) {
"[null]"
}
elseif ($value -is [switch]) {
$value.IsPresent
}
elseif ($value -is [boolean]) {
@ -108,7 +111,7 @@ function InitTelemetryScope {
}
$telemetry.CorrelationId = $CorrelationId
if ($includeParameters) {
$parameterValues.GetEnumerator() | % {
$parameterValues.GetEnumerator() | ForEach-Object {
$includeParameter = $false
$key = $_.key
$includeParameters | ForEach-Object { if ($key -like $_) { $includeParameter = $true } }