Skip to content

Commit a8eb2b5

Browse files
authored
Merge pull request #150 from kcl-lang/fix-client-default-logger-to-stdout
fix: client default logger to stdout
2 parents b2a5ed3 + 76e9202 commit a8eb2b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/options/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func (o *RunOptions) Run() error {
139139
client.WithDebug(o.Debug),
140140
client.WithStrictRange(o.StrictRangeCheck),
141141
client.WithCompileOnly(o.CompileOnly),
142-
client.WithLogger(o.Writer),
142+
client.WithLogger(os.Stdout),
143143
)
144144

145145
if err != nil {

0 commit comments

Comments
 (0)