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 2022/05/23 15:57:28 UTC

[allura] 03/03: [#8431] downgrade a common "error" log

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch db/8431
in repository https://gitbox.apache.org/repos/asf/allura.git

commit e2780c70f51a47be4b02df80161bd2eeefa0e9f4
Author: Dave Brondsema <db...@slashdotmedia.com>
AuthorDate: Mon May 23 11:02:58 2022 -0400

    [#8431] downgrade a common "error" log
---
 ForgeGit/forgegit/model/git_repo.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ForgeGit/forgegit/model/git_repo.py b/ForgeGit/forgegit/model/git_repo.py
index 78185b48a..022995227 100644
--- a/ForgeGit/forgegit/model/git_repo.py
+++ b/ForgeGit/forgegit/model/git_repo.py
@@ -243,8 +243,7 @@ class GitImplementation(M.RepositoryImplementation):
                     url = ' at ' + request.url
                 except Exception:
                     pass
-                log.exception('Error with rev_parse(%s)%s' %
-                              (str(rev) + '^0', url))
+                log.info(f"couldn't run rev_parse({str(rev) + '^0'}){url}", exc_info=True)
         if result:
             result.set_context(self._repo)
         return result