summaryrefslogtreecommitdiff
path: root/zuul/configloader.py
diff options
context:
space:
mode:
authorTobias Henkel <tobias.henkel@bmw.de>2021-09-04 08:37:26 +0200
committerTobias Henkel <tobias.henkel@bmw.de>2021-09-04 08:37:26 +0200
commit0290b778eac2b9a70af39ef23c46cfc948cb778e (patch)
tree866c681d9d403778beb095009f9c8b5a16c23ab4 /zuul/configloader.py
parent2bab33a5db5fdfb85e4f272190f649991055df5f (diff)
downloadzuul-0290b778eac2b9a70af39ef23c46cfc948cb778e.tar.gz
Don't hide exception in _processCatJobs
When an exception in _processCatJobs happens we catch the exception and emit a debug message without further information. Instead log with the exception information. Change-Id: I62daadf624ba604044d8c4b0566530d54a3ce7af
Diffstat (limited to 'zuul/configloader.py')
-rw-r--r--zuul/configloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/zuul/configloader.py b/zuul/configloader.py
index 54bfca6ff..2e00c2bc8 100644
--- a/zuul/configloader.py
+++ b/zuul/configloader.py
@@ -1821,7 +1821,7 @@ class TenantParser(object):
try:
self._processCatJobs(abide, tenant, loading_errors, jobs)
except Exception:
- self.log.debug("Error processing cat jobs, canceling")
+ self.log.exception("Error processing cat jobs, canceling")
for job in jobs:
try:
self.log.debug("Canceling cat job %s", job)