Ability to configure paws logging system, through the use of paws
helper function `paws_config_log` or R:base options function.
Users are able to change logging levels without calling paws.common by
the use of options e.g. options("paws.log_level" = 2L).
paws.log_level (integer): The minimum log level that should be tracked
paws.log_file (character): path for logs to populate, default output logs to console.
paws.log_timestamp_fmt (character): see format.POSIXct()
paws_config_log(
level = 2L,
file = "",
timestamp_fmt = "%Y-%m-%d %H:%M:%OS3"
)(integer) to determine the level logging threshold.
5L: TRACE
4L: DEBUG
3L: INFO
2L: WARNING
1L: ERROR
(character) path for logs to populate, default output logs to console.
(character) for timestamp format, see format.POSIXct().