We can centralise this and let users change the option globally, by setting this in each function argument to function(..., verbose = getOption("verbose").
This is not consistent in core R packages, e.g. source() does, but load() does not use the getOption("verbose") in the function argument.
We can centralise this and let users change the option globally, by setting this in each function argument to
function(..., verbose = getOption("verbose").This is not consistent in core R packages, e.g.
source()does, butload()does not use thegetOption("verbose")in the function argument.