CSHS-CWRA / CSHShydRology

Main package
GNU Affero General Public License v3.0
35 stars 39 forks source link

CRAN issue #5 writing information to console that cannot be suppressed #73

Closed KevinShook closed 2 years ago

KevinShook commented 2 years ago

You write information messages to the console that cannot be easily suppressed. It is more R like to generate objects that can be used to extract the information a user is interested in, and then print() that object. Instead of print()/cat() rather use message()/warning() or if(verbose)cat(..) (or maybe stop()) if you really have to write text to the console. (except for print, summary, interactive functions

Session Info ```r ```
KevinShook commented 2 years ago

Appears to have been fixed by Paul and myself