log_threshold: Get or set log level threshold

Description Usage Arguments Value See Also Examples

View source: R/logger.R

Description

Get or set log level threshold

Usage

1
log_threshold(level, namespace = "global", index = 1)

Arguments

level

see log_levels

namespace

logger namespace

index

index of the logger within the namespace

Value

currently set log level threshold

See Also

logger, log_layout, log_formatter, log_appender

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
## Not run: 
## check the currently set log level threshold
log_threshold()

## change the log level threshold to WARN
log_threshold(WARN)
log_info(1)
log_warn(2)

## add another logger with a lower log level threshold and check the number of logged messages
log_threshold(INFO, index = 2)
log_info(1)
log_warn(2)

## set the log level threshold in all namespaces to ERROR
log_threshold(ERROR, namespace =  log_namespaces())

## End(Not run)

logger documentation built on Oct. 19, 2021, 9:07 a.m.