Helper function to set options for verbosity.
remake_verbose(verbose = getOption("remake.verbose", TRUE),
noop = getOption("remake.verbose.noop", TRUE),
command = getOption("remake.verbose.command", TRUE),
command_abbreviate = getOption("remake.verbose.command.abbreviate", TRUE),
target = NULL)Print progress at each step that remake does something.
Print progress for steps that are non-operations, such
as targets that need nothing done to them. Setting this to
FALSE is useful for very large projects.
Print the command along with the progress information? This is only printed when remake actually runs something.
Abbreviate the command information so
that it fits on one line. If FALSE then the command will
be allowed to run on for as many lines as required.
The first four options have a natural nesting: setting
progress=FALSE prevents printing any progress information,
so the value of noop, command and
command_abbreviate does not matter. Similarly, setting
command=FALSE means that command_abbreviate does not
matter.