In #7, we added a rough implementation of logging and used it for all of the console output produced by our binaries.
This is an arguably improper use of logging, where we now have our default output verbosity as INFO, so all Info logs are printed which can be considered noisy etc. Additionally, logging may be more appropriate for the stderr stream where program output can then be redirected easily without log lines being included.
In #7, we added a rough implementation of logging and used it for all of the console output produced by our binaries.
This is an arguably improper use of logging, where we now have our default output verbosity as INFO, so all Info logs are printed which can be considered noisy etc. Additionally, logging may be more appropriate for the
stderr
stream where program output can then be redirected easily without log lines being included.