saucelabs / saucectl

A command line interface for the Sauce Labs platform.
Apache License 2.0
42 stars 16 forks source link

fix: Switch to using fmt.Println #881

Closed tianfeng92 closed 9 months ago

tianfeng92 commented 9 months ago

Proposed changes

In several places, our code currently utilizes println() for outputting information. However, println() is primarily meant for bootstrapping and debugging purposes, and it directs output to stderr. For standard output, we should switch to using fmt.Println().

Types of changes

Checklist

Further comments