Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 21758C423 for ; Mon, 3 Jun 2013 14:37:48 +0000 (UTC) Received: (qmail 14140 invoked by uid 500); 3 Jun 2013 13:37:48 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 14084 invoked by uid 500); 3 Jun 2013 13:37:47 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 13691 invoked by uid 99); 3 Jun 2013 13:37:44 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jun 2013 13:37:44 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id F003389FC90; Mon, 3 Jun 2013 13:37:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brondsem@apache.org To: allura-commits@incubator.apache.org Date: Mon, 03 Jun 2013 13:38:01 -0000 Message-Id: In-Reply-To: <5d7115ad9b314c2b9a7e8591476d9f90@git.apache.org> References: <5d7115ad9b314c2b9a7e8591476d9f90@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [19/21] 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/master Commit: 7f945398e8828c6c13b424cc95aed2f86dcdae99 Parents: ab5f161 Author: Dave Brondsema Authored: Fri May 31 22:13:54 2013 +0000 Committer: Dave Brondsema 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))