mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-10 23:08:23 +00:00
web/lib/utils.py: remove unneeded check_logger_options()
This commit is contained in:
parent
c4535f353a
commit
4fa014add4
@ -30,20 +30,6 @@ def get_logger(filename=None, log_level='debug'):
|
|||||||
return logger
|
return logger
|
||||||
|
|
||||||
|
|
||||||
def check_logger_options(config):
|
|
||||||
""" Check passed config for logger options """
|
|
||||||
if 'log_level' in config:
|
|
||||||
log_level = config['log_level']
|
|
||||||
else:
|
|
||||||
sys.stderr.write('"log_level" is missing in config\n')
|
|
||||||
sys.exit(1)
|
|
||||||
if 'log_file' in config:
|
|
||||||
log_file = config['log_file']
|
|
||||||
else:
|
|
||||||
sys.stderr.write('"log_file is missing in config\n')
|
|
||||||
sys.exit(1)
|
|
||||||
return (log_file, log_level)
|
|
||||||
|
|
||||||
def validate_config(config):
|
def validate_config(config):
|
||||||
""" Validate configobj config """
|
""" Validate configobj config """
|
||||||
validator = validate.Validator()
|
validator = validate.Validator()
|
||||||
|
Loading…
Reference in New Issue
Block a user