@config_section | |
class LogConfig: | |
# enable/disable log output to stdout | |
console_enabled = True | |
# minimum log level to show on console | |
console_level = "INFO" | |
# enable/disable log output to file | |
file_enabled = True | |
# minimum log level to write to file | |
file_level = "DEBUG" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment