You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/06/03 21:19:20 UTC

[21/38] git commit: [#6235] include path in logging

[#6235] include path in logging


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

Branch: refs/heads/cj/6218
Commit: 7f945398e8828c6c13b424cc95aed2f86dcdae99
Parents: ab5f161
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Fri May 31 22:13:54 2013 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Fri May 31 22:14:10 2013 +0000

----------------------------------------------------------------------
 Allura/allura/tasks/repo_tasks.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/7f945398/Allura/allura/tasks/repo_tasks.py
----------------------------------------------------------------------
diff --git a/Allura/allura/tasks/repo_tasks.py b/Allura/allura/tasks/repo_tasks.py
index 95d7052..a99d7d0 100644
--- a/Allura/allura/tasks/repo_tasks.py
+++ b/Allura/allura/tasks/repo_tasks.py
@@ -132,6 +132,6 @@ def tarball(revision=None, path=None):
             try:
                 repo.tarball(revision, path)
             except:
-                log.error('Could not create tarball for repository %s:%s revision %s' % (c.project.shortname, c.app.config.options.mount_point, revision), exc_info=True)
+                log.error('Could not create tarball for repository %s:%s revision %s path %s' % (c.project.shortname, c.app.config.options.mount_point, revision, path), exc_info=True)
     else:
         log.warn('Creation of tarball for %s:%s skipped because revision is not specified' % (c.project.shortname, c.app.config.options.mount_point))