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 2013/02/14 00:08:47 UTC

[5/6] git commit: [#5810] add colon before instance-specific log data, for easier log parsing later

[#5810] add colon before instance-specific log data, for easier log parsing later


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

Branch: refs/heads/db/5810
Commit: 4e69f823f8b9db74e385f3a461381534102e5d65
Parents: 0f59f64
Author: Dave Brondsema <db...@geek.net>
Authored: Tue Feb 12 21:47:28 2013 +0000
Committer: Dave Brondsema <db...@geek.net>
Committed: Wed Feb 13 23:08:31 2013 +0000

----------------------------------------------------------------------
 ForgeSVN/forgesvn/model/svn.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/4e69f823/ForgeSVN/forgesvn/model/svn.py
----------------------------------------------------------------------
diff --git a/ForgeSVN/forgesvn/model/svn.py b/ForgeSVN/forgesvn/model/svn.py
index 33bac43..64a36ca 100644
--- a/ForgeSVN/forgesvn/model/svn.py
+++ b/ForgeSVN/forgesvn/model/svn.py
@@ -410,7 +410,7 @@ class SVNImplementation(M.RepositoryImplementation):
                 revision=rev,
                 depth=pysvn.depth.immediates)
         except pysvn.ClientError:
-            log.exception('Error computing tree for %s: %s(%s)',
+            log.exception('Error computing tree for: %s: %s(%s)',
                           self._repo, commit, tree_path)
             return None
         log.debug('Compute tree for %d paths', len(infos))
@@ -595,7 +595,7 @@ class SVNImplementation(M.RepositoryImplementation):
                 revision=rev,
                 depth=pysvn.depth.immediates)
         except pysvn.ClientError:
-            log.exception('Error computing tree for %s: %s(%s)',
+            log.exception('Error computing tree for: %s: %s(%s)',
                           self._repo, commit, tree_path)
             return None
         entries = {}