Skip to content

Commit

Permalink
Merge pull request #2684 from NikCharlebois/FIXES-#2682
Browse files Browse the repository at this point in the history
FIXES #2682
  • Loading branch information
NikCharlebois authored Dec 19, 2022
2 parents cdf4a0a + b49716e commit 8560d0b
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 @@ -14,6 +14,8 @@
FIXES [#2671](https://github.com/microsoft/Microsoft365DSC/issues/2671)
* Updated Get-M365DSCCompiledPermissionList to output all permissions consistently.
It can now also be used as input for Update-M365DscAzureAdApplication.
* Fixes issue where the wrong parameter is being passed to the Erro log function.
FIXES [#2682](https://github.com/microsoft/Microsoft365DSC/issues/2682)
* DEPENDENCIES
* Updated Microsoft.Graph.* to version 1.19.0;

Expand Down
2 changes: 1 addition & 1 deletion Modules/Microsoft365DSC/Modules/M365DSCLogEngine.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function Add-M365DSCEvent
# Check call stack to prevent indefinite loop between New-M365DSCLogEntry and this function
if ((Get-PSCallStack)[1].FunctionName -ne 'New-M365DSCLogEntry')
{
New-M365DSCLogEntry -Error $_ -Message $MessageText `
New-M365DSCLogEntry -Exception $_ -Message $MessageText `
-Source '[M365DSCLogEngine]' `
-TenantId $TenantId
}
Expand Down

0 comments on commit 8560d0b

Please sign in to comment.