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
In VS Code there are three settings for Razor logging, "Off", "Messages" and "Verbose". Off is the default, but due to a bug in the C# side we actually always log as Verbose regardless of the setting.
We should fix this up to use more standard level names (ie, Debug, Information, Warning, Error) and we should actually honor what the user sets. Also should probably default to Warning or Information, rather than Off. We should probably also change the name of the setting to razor.server.trace from the current razor.trace to better match the C# extension, and the VS Code documentation for LSP servers.
The text was updated successfully, but these errors were encountered:
In VS Code there are three settings for Razor logging, "Off", "Messages" and "Verbose". Off is the default, but due to a bug in the C# side we actually always log as Verbose regardless of the setting.
We should fix this up to use more standard level names (ie, Debug, Information, Warning, Error) and we should actually honor what the user sets. Also should probably default to Warning or Information, rather than Off. We should probably also change the name of the setting to
razor.server.trace
from the currentrazor.trace
to better match the C# extension, and the VS Code documentation for LSP servers.The text was updated successfully, but these errors were encountered: