From fa0390315a0b19184491bfdfa5de4ec402342c53 Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Thu, 11 Jul 2013 08:40:04 -0700 Subject: [PATCH] Updated to log exception information when a timeout occurs --- appvalidator/submain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appvalidator/submain.py b/appvalidator/submain.py index 75bed7f..57c00b3 100644 --- a/appvalidator/submain.py +++ b/appvalidator/submain.py @@ -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: