Skip to content

Commit

Permalink
log when issue owners are stored as group owners
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie committed Feb 27, 2023
1 parent f70d9c6 commit 625c09f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/sentry/tasks/post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,13 @@ def handle_owner_assignment(job):
if issue_owners:
try:
handle_group_owners(project, group, issue_owners)
logger.info(
"handle_owner_assignment.success",
extra={
**basic_logging_details,
"reason": "stored_issue_owners",
},
)
except Exception:
logger.exception("Failed to store group owners")
except Exception:
Expand Down

0 comments on commit 625c09f

Please sign in to comment.