You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
Just wondering because we get a lot of log pollution from this (filtering LogLevel.Information and lower out in production.) We can definitely filter out this specific message but, at least for us, LogLevel.Warning seems excessive for this message. For reference, we have a slew of applications using an internal OAuth provider with a short-lived token (to keep permissions up-to-date with minimal need to ask a user to clear cookies, etc.) Because most of our apps are authenticated-only (and automatically so), we get this message all the time.
I could see this being excessive for other scenarios as well:
Users navigating to a 'my account details' page on a shopping site
Users clicking 'send message to this user' or 'post reply' on a social/discussion site
Users bookmarking a specific page that happens to require them to be logged in
The text was updated successfully, but these errors were encountered:
Hmm I'm a bit conflicted on this. I think I do agree that Warning is too important a level for this. It's not "bad" and it's not an app programming error to go to a URL when you're not authenticated (or authenticated as the wrong user). It's just app logic and flow with regard to business requirements.
I think more serious things such as entering invalid username/password is a "warning" because that could more likely be something an admin would want to see in a report.
Just wondering because we get a lot of log pollution from this (filtering
LogLevel.Information
and lower out in production.) We can definitely filter out this specific message but, at least for us,LogLevel.Warning
seems excessive for this message. For reference, we have a slew of applications using an internal OAuth provider with a short-lived token (to keep permissions up-to-date with minimal need to ask a user to clear cookies, etc.) Because most of our apps are authenticated-only (and automatically so), we get this message all the time.I could see this being excessive for other scenarios as well:
The text was updated successfully, but these errors were encountered: