Merge pull request #2551 from coreos-inc/structured-logs

Add log formatter class
This commit is contained in:
Antoine Legrand 2017-06-07 08:22:18 -07:00 committed by GitHub
commit f0dd2e348b
27 changed files with 402 additions and 41 deletions

View file

@ -13,6 +13,7 @@ from data.model.image import (get_images_eligible_for_scan, get_image_pk_field,
from util.secscan.api import SecurityConfigValidator, APIRequestFailure
from util.secscan.analyzer import LayerAnalyzer, PreemptedException
from util.migrate.allocator import yield_random_entries
from util.log import logfile_path
from endpoints.v2 import v2_bp
@ -109,6 +110,6 @@ if __name__ == '__main__':
while True:
time.sleep(100000)
logging.config.fileConfig('conf/logging_debug.conf', disable_existing_loggers=False)
logging.config.fileConfig(logfile_path(debug=True), disable_existing_loggers=False)
worker = SecurityWorker()
worker.start()