Skip to content

Commit

Permalink
[Blazor] WASM - Fix log message for logout success (#45847)
Browse files Browse the repository at this point in the history
* Fixes the logout message in the webassembly authentication package.
  • Loading branch information
mmacy authored Jan 10, 2023
1 parent 248ff48 commit 9324da0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private static partial class Log
[LoggerMessage(9, LogLevel.Debug, "The logout was not initiated from within the page.", EventName = nameof(LogoutOperationInitiatedExternally))]
public static partial void LogoutOperationInitiatedExternally(ILogger logger);

[LoggerMessage(10, LogLevel.Debug, "Login completed successfully.", EventName = nameof(LoginCompletedSuccessfully))]
[LoggerMessage(10, LogLevel.Debug, "Logout completed successfully.", EventName = nameof(LogoutCompletedSuccessfully))]
public static partial void LogoutCompletedSuccessfully(ILogger logger);

[LoggerMessage(11, LogLevel.Debug, "Logout requires redirect to the identity provider.", EventName = nameof(LogoutRequiresRedirect))]
Expand Down

0 comments on commit 9324da0

Please sign in to comment.