diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fc79c9..5134aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `Assert-BoundParameter` - Fixed example in documentation that were referencing an invalid command name. +- `Get-LocalizedData` + - One debug message was wrongly using a format operator ([issue #111](https://github.com/dsccommunity/DscResource.Common/issues/111). ## [0.16.0] - 2023-04-10 diff --git a/source/Public/Get-LocalizedData.ps1 b/source/Public/Get-LocalizedData.ps1 index 424d136..94adab6 100644 --- a/source/Public/Get-LocalizedData.ps1 +++ b/source/Public/Get-LocalizedData.ps1 @@ -436,7 +436,7 @@ function Get-LocalizedData } else { - Write-Debug -Message ('Returning localized data.' -f $BindingVariable) + Write-Debug -Message 'Returning localized data.' return $localizedData }