Skip to content
Snippets Groups Projects
Commit e2c637e6 authored by Anael Beutot's avatar Anael Beutot
Browse files

Log exception in case of an error during tag calculation.

parent 49114aab
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,7 @@ class Tag(object):
try:
self.value = self._calculate_value()
except Exception:
logger.exception('Cannot calculate tag value for %s', self.name)
self.value = None
# logger.debug('Calculate Tag(%s) = %s', self.name, self.value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment