Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIXES #2682 #2684

Merged
merged 1 commit into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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