Commit e2c637e6 authored by Anael Beutot's avatar Anael Beutot
Browse files

Log exception in case of an error during tag calculation.

parent 49114aab
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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)