Updated to log exception information when a timeout occurs

This commit is contained in:
Rob Hudson 2013-07-11 08:40:04 -07:00
Родитель 6a476dc63c
Коммит fa0390315a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -53,7 +53,7 @@ def prepare_package(err, path, timeout=None):
# sequential validators, like in the test suite.
return err
ex = ValidationTimeout(timeout)
log.error("%s; Package: %s" % (str(ex), path))
log.error("%s; Package: %s" % (str(ex), path), exc_info=True)
raise ex
with open(path, "rb") as package: