Creates a new logging namespace specified by the namespace argument.
When the layout and level arguments are set to NULL (default), the function
gets the values for them from system variables or R options.
When deciding what to use (either argument, an R option or system variable), the function
picks the first non NULL value, checking in order:
Function argument.
System variable.
R option.
layout and level can be set as system environment variables, respectively:
If neither the argument nor the environment variable is set the function uses the following R options:
options(teal.log_layout), which is passed to logger::layout_glue_generator(),
options(teal.log_level), which is passed to logger::log_threshold()
The logs are output to stdout by default. Check logger for more information
about layouts and how to use logger.