1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-08 22:07:55 +00:00

web/lib/utils.py: remove unneeded check_logger_options()

This commit is contained in:
Hidden Z 2010-11-01 21:22:20 +00:00
parent c4535f353a
commit 4fa014add4

View File

@ -30,20 +30,6 @@ def get_logger(filename=None, log_level='debug'):
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):
""" Validate configobj config """
validator = validate.Validator()