Skip to content

Commit

Permalink
Fix VSCode extension args
Browse files Browse the repository at this point in the history
  • Loading branch information
jayadamsmorgan committed Apr 5, 2024
1 parent 381983a commit 7c88548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Editors/VSCode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import {
const serverOptions: ServerOptions = {
run: {
command: "pkl-lsp-server",
args: ["-l", "info", "-f", "pkl-lsp-server.log"],
args: [],
},
debug: {
command: "pkl-lsp-server",
args: ["-l", "debug", "-f", "pkl-lsp-server.log"],
args: ["-l", "debug"],
},
};

Expand Down

0 comments on commit 7c88548

Please sign in to comment.