Skip to content

Commit 36f2ac5

Browse files
authored
ref(bitbucket): Demote logger.error to logger.info (#32179)
1 parent b4fd0f3 commit 36f2ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/integrations/bitbucket/webhook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def post(self, request: Request, organization_id) -> Response:
123123
try:
124124
organization = Organization.objects.get_from_cache(id=organization_id)
125125
except Organization.DoesNotExist:
126-
logger.error(
126+
logger.info(
127127
f"{PROVIDER_NAME}.webhook.invalid-organization",
128128
extra={"organization_id": organization_id},
129129
)

0 commit comments

Comments
 (0)