diff --git a/roles/simple-koji-ci/templates/simple_koji_ci.py b/roles/simple-koji-ci/templates/simple_koji_ci.py index 5272d32ff8..e1c11cd56d 100644 --- a/roles/simple-koji-ci/templates/simple_koji_ci.py +++ b/roles/simple-koji-ci/templates/simple_koji_ci.py @@ -39,5 +39,15 @@ config = { # The number of times the-new-hotness should retry a network request that # that failed for any reason (e.g. read timeout, DNS error, etc) 'simple-koji-ci.requests_retries': 3, -} + logging = { + "loggers": { + "simple_koji_ci": { + "level": "INFO", + "propagate": True, + "handlers": ["console"], + }, + }, + } + +}