Don't log tracebacks when we know where they're going to end

Change-Id: I789af9c2c02da8a895186581dbf8a2e3db8c5e9f
This commit is contained in:
Tim Burke 2018-02-26 10:48:43 +00:00 committed by Tim Burke
parent 1fadffeae0
commit 7eb9852cd4

View File

@ -147,8 +147,8 @@ class ObjectExpirer(Daemon):
cache_key = '%s/%s' % (target_account, target_container)
# sanity
except ValueError:
self.logger.exception('Unexcepted error handling task %r' %
delete_task)
self.logger.error('Unexcepted error handling task %r' %
delete_task)
continue
obj_cache[cache_key].append(delete_task)