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/02/18 21:09:15 UTC

[4/8] 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/0469b73e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/0469b73e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/0469b73e

Branch: refs/heads/cj/5685
Commit: 0469b73e16f2e6eb930461f19a1d750491ad8998
Parents: bdd590a
Author: Dave Brondsema <db...@geek.net>
Authored: Tue Feb 12 21:47:28 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Mon Feb 18 19:58:10 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/0469b73e/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 = {}