aspnet / Session

[Archived] Session state middleware for ASP.NET Core. Project moved to https://github.com/aspnet/AspNetCore
Apache License 2.0
126 stars 66 forks source link

Add logging scope for session #181

Closed davidfowl closed 6 years ago

davidfowl commented 7 years ago

The session middleware should create a scope with the session id so that it's possible correlate session across multiple requests for logs.

Tratcher commented 7 years ago

Implementation question: do you use the cookie value or the cached session instance id. The cookie value is likely longer lived than the cache instance.

aspnet-hello commented 6 years ago

This issue was moved to aspnet/Home#2400