You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2014/02/05 20:22:53 UTC

git commit: show full trace of project import exceptions

Updated Branches:
  refs/heads/db/7132 [created] ed9835907


show full trace of project import exceptions


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/ed983590
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/ed983590
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/ed983590

Branch: refs/heads/db/7132
Commit: ed98359075ecfeeb49106f3af5c86ffc28e32018
Parents: 18b4299
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Wed Feb 5 19:22:47 2014 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Wed Feb 5 19:22:47 2014 +0000

----------------------------------------------------------------------
 scripts/project-import.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/ed983590/scripts/project-import.py
----------------------------------------------------------------------
diff --git a/scripts/project-import.py b/scripts/project-import.py
index 7e6257a..b42a6fd 100644
--- a/scripts/project-import.py
+++ b/scripts/project-import.py
@@ -230,7 +230,7 @@ def create_project(p, nbhd, user, options):
                                                 project_name=p.name.name,
                                                 private_project=p.private)
         except Exception, e:
-            log.error('[%s] %s' % (worker_name, str(e)))
+            log.exception('[%s] %s' % (worker_name, str(e)))
             return 0
     else:
         log.info('[%s] Updating project "%s".' % (worker_name, shortname))