فهرست منبع

fix: lsp debug cmd log (#2310)

Aiden Cline 7 ماه پیش
والد
کامیت
12eb1391b9
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/opencode/src/cli/cmd/debug/lsp.ts

+ 1 - 1
packages/opencode/src/cli/cmd/debug/lsp.ts

@@ -16,7 +16,7 @@ const DiagnosticsCommand = cmd({
   async handler(args) {
   async handler(args) {
     await bootstrap({ cwd: process.cwd() }, async () => {
     await bootstrap({ cwd: process.cwd() }, async () => {
       await LSP.touchFile(args.file, true)
       await LSP.touchFile(args.file, true)
-      console.log(await LSP.diagnostics())
+      console.log(JSON.stringify(await LSP.diagnostics(), null, 2))
     })
     })
   },
   },
 })
 })