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
Copy file name to clipboardExpand all lines: package.json
+1-7
Original file line number
Diff line number
Diff line change
@@ -953,11 +953,6 @@
953
953
"default": [],
954
954
"markdownDescription": "An array of strings that enable experimental features in the PowerShell extension. **No flags are currently available!**"
955
955
},
956
-
"powershell.developer.traceLsp": {
957
-
"type": "boolean",
958
-
"default": false,
959
-
"markdownDescription": "Traces the LSP communication between VS Code and the PowerShell Editor Services [LSP Server](https://microsoft.github.io/language-server-protocol/). The output will be logged and also visible in the Output pane, where the verbosity is configurable. **For extension developers and issue troubleshooting only!**"
960
-
},
961
956
"powershell.developer.traceDap": {
962
957
"type": "boolean",
963
958
"default": false,
@@ -971,8 +966,7 @@
971
966
"verbose"
972
967
],
973
968
"default": "off",
974
-
"markdownDescription": "Traces the communication between VS Code and the PowerShell Editor Services [LSP Server](https://microsoft.github.io/language-server-protocol/). The output will be logged and also visible in the Output pane, where the verbosity is configurable. **For extension developers and issue troubleshooting only!**",
975
-
"markdownDeprecationMessage": "Please use the `powershell.developer.traceLsp` setting instead and control verbosity via the Output Window settings."
969
+
"markdownDescription": "Traces the communication between VS Code and the PowerShell Editor Services [LSP Server](https://microsoft.github.io/language-server-protocol/). The output will be logged and also visible in the Output pane, where the verbosity is configurable. **For extension developers and issue troubleshooting only!**"
Copy file name to clipboardExpand all lines: src/logging.ts
+10-4
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,13 @@ export class Logger implements ILogger {
138
138
* HACK: This is for legacy compatability and can be removed when https://github.com/microsoft/vscode-languageserver-node/issues/1116 is merged and replaced with a normal LogOutputChannel. We don't use a middleware here because any direct logging calls like client.warn() and server-initiated messages would not be captured by middleware.
@@ -147,10 +153,9 @@ export class LanguageClientOutputChannelAdapter implements LogOutputChannel {
147
153
* @param parser - A function that parses a log message and returns a tuple containing the parsed message and its log level, or undefined if the log should be filtered.
0 commit comments