Skip to content

Commit

Permalink
Get-LocalizedData: Fix debug message (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju authored Jan 21, 2024
1 parent a83ec13 commit 08436a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion source/Public/Get-LocalizedData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ function Get-LocalizedData
}
else
{
Write-Debug -Message ('Returning localized data.' -f $BindingVariable)
Write-Debug -Message 'Returning localized data.'

return $localizedData
}
Expand Down

0 comments on commit 08436a7

Please sign in to comment.