| get_log_config {azlogr} | R Documentation | 
Get configuration value
Description
Get the configuration value of a specific key which was set (or not set) using
set_log_config function. If nothing was set, then it reuses the
default value defined in the function signature of
set_log_config function.
Usage
get_log_config(key = NULL)
Arguments
| key | Specify the key whose value needs to be extracted.  | 
Value
Returns the respective configuration value of the given key.
If key is NULL, then all the configuration values will be
returned together as a list.
Examples
  # Get configuration value without setting anything
  get_log_config("log_to_azure")
  # Set some configuration first and then get the respective values
  set_log_config(enforce_tz_utc = FALSE, log_to_azure = FALSE)
  get_log_config("enforce_tz_utc")
  get_log_config("log_to_azure")
  # Reset the values
  set_log_config()
  get_log_config("log_to_azure")
  # Extract list of all configurations
  get_log_config()
[Package azlogr version 0.0.6 Index]