Enum SessionIdLoggingMode
Determines how request logging enriches log events with a session identifier.
Namespace: Umbraco.Cms.Core.Configuration.Models
Assembly: Umbraco.Core.dll
Syntax
public enum SessionIdLoggingMode
Fields
| Name | Description |
|---|---|
| CookieHash | Enrich log events with a one-way hash of the session cookie value. This provides the same per-session correlation as SessionId without loading the session from its store, so it never incurs a distributed-cache round-trip. |
| None | Do not enrich log events with a session identifier. |
| SessionId | Enrich log events with the actual ASP.NET Core session id. This is the default and matches the
historical behaviour, but reading the session id forces the session to be loaded from its store, which
is a blocking round-trip per request when the session is backed by an |