We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f712c52 + d3b33bb commit 191adf1Copy full SHA for 191adf1
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LogoutCommand.cs
@@ -21,9 +21,11 @@ public LogoutCommand(AuthService authService)
21
Logger = NullLogger<LogoutCommand>.Instance;
22
}
23
24
- public Task ExecuteAsync(CommandLineArgs commandLineArgs)
+ public async Task ExecuteAsync(CommandLineArgs commandLineArgs)
25
{
26
- return AuthService.LogoutAsync();
+ await AuthService.LogoutAsync();
27
+
28
+ Logger.LogInformation("You are logged out.");
29
30
31
public string GetUsageInfo()
0 commit comments