From 76e920214f9c42ba05e5d07596d35db4353f683d Mon Sep 17 00:00:00 2001 From: peefy Date: Wed, 16 Oct 2024 10:09:51 +0800 Subject: [PATCH] fix: client default logger to stdout Signed-off-by: peefy --- pkg/options/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/options/run.go b/pkg/options/run.go index 0e7d0bc..390f7c5 100644 --- a/pkg/options/run.go +++ b/pkg/options/run.go @@ -139,7 +139,7 @@ func (o *RunOptions) Run() error { client.WithDebug(o.Debug), client.WithStrictRange(o.StrictRangeCheck), client.WithCompileOnly(o.CompileOnly), - client.WithLogger(o.Writer), + client.WithLogger(os.Stdout), ) if err != nil {