Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit cc242ed

Browse files
committed
Misc
1 parent f0b41cb commit cc242ed

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/Duende.Bff/EndpointServices/Logout/DefaultLogoutService.cs

+4
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ public virtual async Task ProcessRequestAsync(HttpContext context)
101101

102102
Logger.LogDebug("Refresh token revoked for sub {sub} and sid {sid}", result.Ticket.GetSubjectId(), result.Ticket.GetSessionId());
103103
}
104+
else
105+
{
106+
Logger.LogTrace("Refresh token not found for sub {sub} and sid {sid}", result.Ticket.GetSubjectId(), result.Ticket.GetSessionId());
107+
}
104108
}
105109

106110
// get rid of local cookie first

src/Duende.Bff/EndpointServices/User/DefaultUserService.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ public virtual async Task ProcessRequestAsync(HttpContext context)
7878
}
7979
else
8080
{
81-
// In blazor, it is sometimes necessary to copy management claims into the session.
82-
// So, we don't want duplicate mgmt claims. Instead, they should overwrite the existing mgmt claims
83-
// (in case they changed when the session slid, etc)
81+
// In blazor, it is sometimes necessary to copy management claims
82+
// into the session. So, we don't want duplicate mgmt claims.
83+
// Instead, they should overwrite the existing mgmt claims (in case
84+
// they changed when the session slid, etc)
8485
var claims = (await GetUserClaimsAsync(result)).ToList();
8586
var mgmtClaims = await GetManagementClaimsAsync(context, result);
8687

0 commit comments

Comments
 (0)