From 99f47d0191a51ab7438e477ef239d58e2e526860 Mon Sep 17 00:00:00 2001 From: Grant Linville Date: Wed, 18 Sep 2024 15:01:23 -0400 Subject: [PATCH] debug windows Signed-off-by: Grant Linville --- src/gptscript.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gptscript.ts b/src/gptscript.ts index cccd62b..bd36ba0 100644 --- a/src/gptscript.ts +++ b/src/gptscript.ts @@ -554,7 +554,7 @@ export class Run { reject(new Error(this.stderr)) } } else if (this.state === RunState.Error) { - console.error(this.err) + console.log(this.err) reject(new Error(this.err)) } })