Skip to content

Commit

Permalink
add language server debug tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
tm1000 committed Aug 14, 2021
1 parent b2c4c18 commit 85ae2fa
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,44 @@
"default": false,
"description": "Enable this to print messages to the debug console when developing or debugging this VS Code extension. (Modifying requires VSCode reload)"
},
"psalm.trace.server": {
"scope": "window",
"anyOf": [
{
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off"
},
{
"type": "object",
"properties": {
"verbosity": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off"
},
"format": {
"type": "string",
"enum": [
"text",
"json"
],
"default": "text"
}
}
}
],
"default": "off",
"description": "Traces the communication between VSCode and the Psalm language server."
},
"psalm.analyzedFileExtensions": {
"type": "array",
"default": [
Expand Down

0 comments on commit 85ae2fa

Please sign in to comment.