Hey,
Been setting up Sentry as a spike for my company, and mostly working well, but I’m having a slight issue with Users:
scope.User = new User
{
Username = user?.UserName,
Email = email,
Id = user?.Id.ToString(),
Other = new Dictionary<string, string>()
{
{"AspNetUserId", user?.AspNetUserId.ToString()},
{"CompanyName", user?.Company?.Name},
{"CompanyId", user?.Company?.Id.ToString()}
}
};
The Other dictionary is not making it’s way to Sentry, instead showing:
other
{
IsAuthenticated: [Filtered]
}
Can anyone explain why this is?
I’m using Sentry from NuGet 2.1.8
Thanks!