Skip to content

Commit

Permalink
Merge pull request #150 from kcl-lang/fix-client-default-logger-to-st…
Browse files Browse the repository at this point in the history
…dout

fix: client default logger to stdout
  • Loading branch information
Peefy authored Oct 16, 2024
2 parents b2a5ed3 + 76e9202 commit a8eb2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/options/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a8eb2b5

Please sign in to comment.