Suppress unauthorized visitor logging as it is usually caused by clients that do not support cookies

This commit is contained in:
Shaun Walker
2023-02-03 16:12:13 -05:00
parent 7a105047e9
commit 1f2ad4e884
3 changed files with 29 additions and 12 deletions

View File

@ -8,7 +8,7 @@ namespace Oqtane.Shared
public Alias Alias { get; set; }
public string AntiForgeryToken { get; set; } // passed from server for use in service calls on client
public string AuthorizationToken { get; set; } // passed from server for use in service calls on client
public string RemoteIPAddress { get; set; } // passed from server as cannot be reliable retrieved on client
public string RemoteIPAddress { get; set; } // passed from server as cannot be reliably retrieved on client
private dynamic _properties;