f512d1e460
Signed-off-by: Soumik Dutta <shalearkane@gmail.com>
24 lines
586 B
Python
24 lines
586 B
Python
import logging
|
|
|
|
import borgmatic.logger
|
|
|
|
VERBOSITY_DISABLED = -2
|
|
VERBOSITY_ERROR = -1
|
|
VERBOSITY_ANSWER = 0
|
|
VERBOSITY_SOME = 1
|
|
VERBOSITY_LOTS = 2
|
|
|
|
|
|
def verbosity_to_log_level(verbosity):
|
|
'''
|
|
Given a borgmatic verbosity value, return the corresponding Python log level.
|
|
'''
|
|
borgmatic.logger.add_custom_log_levels()
|
|
|
|
return {
|
|
VERBOSITY_DISABLED: logging.DISABLED,
|
|
VERBOSITY_ERROR: logging.ERROR,
|
|
VERBOSITY_ANSWER: logging.ANSWER,
|
|
VERBOSITY_SOME: logging.INFO,
|
|
VERBOSITY_LOTS: logging.DEBUG,
|
|
}.get(verbosity, logging.WARNING)
|