Closed optimm closed 1 year ago
Add a description / rationale for the change
Looks good, but I think it may be worth creating a function to encapsulate the printing + exit logic.
@optimm any progress on this?
Looks good, but I think it may be worth creating a function to encapsulate the printing + exit logic.
@optimm any progress on this?
Will make the required changes today
@optimm we require commits to be signed in order to be merged to master. Check the docs on how to sign commits and rebase
Some CLI errors were printed using
println!
, causing them to be indistinguishable from regular output. To resolve this, the code has been updated to useeprintln!
andexit code 1
for error messages. By printing errors to the standard error, error messages are now clearly separated from regular output.