From 9537964c9882c5bccf5b2fdd401632e4e0e975e2 Mon Sep 17 00:00:00 2001 From: JerrySentry Date: Tue, 21 May 2024 12:27:19 -0400 Subject: [PATCH] Lower log severity level to remove Sentry noise --- core/commands/commit/interactors/get_file_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/commit/interactors/get_file_content.py b/core/commands/commit/interactors/get_file_content.py index 30300b3728..d8d3a8a105 100644 --- a/core/commands/commit/interactors/get_file_content.py +++ b/core/commands/commit/interactors/get_file_content.py @@ -21,7 +21,7 @@ async def get_file_from_service(self, commit, path): return content.get("content").decode("utf-8") # TODO raise this to the API so we can handle it. except Exception: - log.exception( + log.info( "GetFileContentInteractor - exception raised", extra=dict(commitid=commit.commitid), )