Set the log level for DVS internals
Description
Section titled “Description”Controls which log messages from the DVS internals are routed to R’s console. error and warn go to stderr(); info, debug, and trace go to stdout.
set_dvs_log_level(level = c("off", "error", "warn", "info", "debug", "trace"))Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
level | Character string giving the desired log level. The default is "off". |
Called for its side effect; returns NULL invisibly.
Examples
Section titled “Examples”# Not run:set_dvs_log_level("info") # opt inset_dvs_log_level("debug")set_dvs_log_level("off") # restore default (silent)