Skip to content

Commit

Permalink
[SNOW-856233] not to log to the console when easy logging configured …
Browse files Browse the repository at this point in the history
…to log to the file (#952)
  • Loading branch information
sfc-gh-knozderko authored Oct 31, 2023
1 parent 1f9df02 commit 56c3618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easy_logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func createLogWriter(logPath string) (io.Writer, *os.File, error) {
if err != nil {
return nil, nil, err
}
return io.MultiWriter(file, os.Stdout), file, nil
return file, file, nil
}

func allowedToInitialize(clientConfigFileInput string) bool {
Expand Down

0 comments on commit 56c3618

Please sign in to comment.