Skip to content

Commit

Permalink
code: Expose esbonio.trace.server option
Browse files Browse the repository at this point in the history
This has always been there thanks to VSCode's language client, this
commit finally exposes the option in the settings UI/completion
suggestions
  • Loading branch information
alcarney committed Mar 3, 2024
1 parent cb923b7 commit a163824
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/changes/748.enhancement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added `esbonio.trace.server` option that allows the logging of LSP messages sent to/from the server
16 changes: 16 additions & 0 deletions code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,22 @@
"default": false,
"description": "Enable lsp-devtools integration for the language server"
},
"esbonio.trace.server": {
"scope": "window",
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Controls if LSP messages sent to/from the server should be logged.",
"enumDescriptions": [
"do not log any lsp messages",
"log all lsp messages sent to/from the server",
"log all lsp messages sent to/from the server, including their contents"
]
},
"esbonio.server.debug": {
"scope": "window",
"type": "boolean",
Expand Down

0 comments on commit a163824

Please sign in to comment.