Functions to set and remove the option parameter verbose_level_staged.deps. It can assume integer values between c(0, 1, 2). This will set this variable as an option with options() and getOption().

verbose_sd_set(verbose = 1)

verbose_sd_get()

verbose_sd_rm()

Arguments

verbose

(numeric)
verbosity level, incremental; (0: None, 1: packages that get installed + high-level git operations, 2: includes git checkout infos)

Examples

verbose_sd_set(2)
verbose_sd_get() # 2, the inserted value
#> [1] 2
verbose_sd_rm()
verbose_sd_get() # 1, the default
#> [1] 1