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
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user