comment-server/src/main.py

87 lines
2.5 KiB
Python
Raw Normal View History

2019-07-20 15:06:34 +02:00
import logging.config
import logging
import argparse
import sys
2019-07-20 15:06:34 +02:00
from src.settings import config
2019-07-24 07:43:50 +02:00
from src.server.app import run_app
2019-05-30 00:01:48 +02:00
2019-07-20 15:06:34 +02:00
def config_logging_from_settings(conf):
_config = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"standard": {
2019-08-24 06:19:11 +02:00
"format": conf['logging']['format'],
"datefmt": conf['logging']['datefmt']
2019-07-20 15:06:34 +02:00
},
"aiohttp": {
2019-08-24 06:19:11 +02:00
"format": conf['logging']['aiohttp_format'],
"datefmt": conf['logging']['datefmt']
2019-07-20 15:06:34 +02:00
}
},
"handlers": {
"console": {
"level": "DEBUG",
"formatter": "standard",
"class": "logging.StreamHandler",
"stream": "ext://sys.stdout"
},
"debug": {
"level": "DEBUG",
"formatter": "standard",
"class": "logging.handlers.RotatingFileHandler",
2019-08-24 06:19:11 +02:00
"filename": conf['path']['debug_log'],
2019-07-20 15:06:34 +02:00
"maxBytes": 10485760,
"backupCount": 5
},
"error": {
"level": "ERROR",
"formatter": "standard",
"class": "logging.handlers.RotatingFileHandler",
2019-08-24 06:19:11 +02:00
"filename": conf['path']['error_log'],
2019-07-20 15:06:34 +02:00
"maxBytes": 10485760,
"backupCount": 5
},
"server": {
"level": "NOTSET",
"formatter": "aiohttp",
"class": "logging.handlers.RotatingFileHandler",
2019-08-24 06:19:11 +02:00
"filename": conf['path']['server_log'],
2019-07-20 15:06:34 +02:00
"maxBytes": 10485760,
"backupCount": 5
}
},
"loggers": {
"": {
"handlers": ["console", "debug", "error"],
"level": "DEBUG",
"propogate": True
},
"aiohttp.access": {
"handlers": ["server"],
"level": "INFO",
"propogate": False
}
}
}
logging.config.dictConfig(_config)
def main(argv=None):
argv = argv or sys.argv[1:]
parser = argparse.ArgumentParser(description='LBRY Comment Server')
parser.add_argument('--port', type=int)
args = parser.parse_args(argv)
config_logging_from_settings(config)
if args.port:
2019-08-24 06:19:11 +02:00
config['port'] = args.port
2019-07-20 15:06:34 +02:00
config_logging_from_settings(config)
run_app(config)
if __name__ == '__main__':
sys.exit(main())