Skip to content

Commit 9324da0

Browse files
authored
[Blazor] WASM - Fix log message for logout success (#45847)
* Fixes the logout message in the webassembly authentication package.
1 parent 248ff48 commit 9324da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/WebAssembly/WebAssembly.Authentication/src/RemoteAuthenticatorViewCore.Log.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private static partial class Log
3737
[LoggerMessage(9, LogLevel.Debug, "The logout was not initiated from within the page.", EventName = nameof(LogoutOperationInitiatedExternally))]
3838
public static partial void LogoutOperationInitiatedExternally(ILogger logger);
3939

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

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

0 commit comments

Comments
 (0)