This function turns on verbose mode, enabling additional informational output. It is useful when you want to receive detailed information about the progress of certain operations.
verbose_on()
The function has no explicit return value.
Verbose mode is designed to provide detailed information during the execution
of a function or operation. By calling verbose_on
, you can enable
this additional output.
The options("Rapi_verbose" = TRUE)
line sets the verbose option to
TRUE
, allowing functions to produce more detailed messages.
verbose_off
: Turn off verbose mode.
verbose_on()
#> Verbose mode is now ON.You will receive additional information during function execution.