From 62f64f3530508091d0453cbcbf60188cd9e9f745 Mon Sep 17 00:00:00 2001 From: JerrySentry <142266253+JerrySentry@users.noreply.github.com> Date: Tue, 21 May 2024 13:41:10 -0400 Subject: [PATCH] Lower log severity level to remove Sentry noise (#576) --- 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), )