-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for isort
in server less mode
#207
Conversation
@@ -104,14 +106,20 @@ export async function getWorkspaceSettings( | |||
export function checkIfConfigurationChanged(e: ConfigurationChangeEvent, namespace: string): boolean { | |||
const settings = [ | |||
`${namespace}.check`, | |||
`${namespace}.trace`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a permanent change? Just curious about why the switch away from their set log level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was a missed change when we switched to logLevel setting. We moved from trace
to logLevel
because language server itself internally uses trace
setting. Our setting was overriding that. We are eventually going to get rid of all logging, and replace it with VS Codes own logging.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for the explanation sounds good!
No description provided.