Changed capitalization of the python.analysis.logLevel setting so it matches Pylance. The settings code in Pyright is case insensitive, but the JSON editor emits a warning if the case doesn't match.

This commit is contained in:
Eric Traut 2020-08-20 09:17:32 -07:00
parent 6944f70f9f
commit 295a6dd306
2 changed files with 5 additions and 5 deletions

View File

@ -540,10 +540,10 @@
"default": "info",
"description": "Specifies the level of logging for the Output panel",
"enum": [
"error",
"warning",
"info",
"trace"
"Error",
"Warning",
"Info",
"Trace"
]
},
"python.analysis.typeCheckingMode": {

View File

@ -20,7 +20,7 @@ The Pyright VS Code extension honors the following settings.
**python.analysis.extraPaths** [array of paths]: Paths to add to the default execution environment extra paths if there are no execution environments defined in the config file.
**python.analysis.logLevel** ["error", "warning", "info", or "trace"]: Level of logging for Output panel. The default value for this option is "info".
**python.analysis.logLevel** ["Error", "Warning", "Info", or "Trace"]: Level of logging for Output panel. The default value for this option is "Info".
**python.analysis.stubPath** [path]: Path to directory containing custom type stub files.