Skip to content

Commit

Permalink
Update symbol doesn't exist log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskr97 committed Sep 19, 2021
1 parent 654d189 commit 7cd5f1d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crashserver/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ def decode_minidump(crash_id):

# No symbols? Notify and return
if not minidump.build.symbol:
logger.info("Symbols do not exist for minidump ID: {}. Skipping symbolization.", crash_id)
logger.info(
"Symbol {} does not exist. Skipping symbolization for Minidump ID {}",
crash_data.main_module.debug_id,
crash_id,
)
db.session.commit()
return

Expand Down

0 comments on commit 7cd5f1d

Please sign in to comment.