Browse Source

Fix vmaddr handling and disable error logging for symbolication due to spam.

Armin Ronacher 8 years ago
parent
commit
37c6f1e5fc
2 changed files with 1 additions and 4 deletions
  1. 1 1
      setup.py
  2. 0 3
      src/sentry/lang/native/plugin.py

+ 1 - 1
setup.py

@@ -145,7 +145,7 @@ install_requires = [
 ]
 
 dsym_requires = [
-    'symsynd>=0.8.2,<1.0.0',
+    'symsynd>=0.8.3,<1.0.0',
 ]
 
 

+ 0 - 3
src/sentry/lang/native/plugin.py

@@ -361,8 +361,6 @@ def resolve_frame_symbols(data):
 
     debug_images = debug_meta['images']
     sdk_info = get_sdk_from_event(data)
-    if not sdk_info:
-        return
 
     stacktraces = find_all_stacktraces(data)
     if not stacktraces:
@@ -409,7 +407,6 @@ def resolve_frame_symbols(data):
                         'symbol_addr': frame['symbol_addr'],
                     }, sdk_info, report_error=report_error)
                     if not sfrm:
-                        logger.error('Frame did not symbolize (%s)', frame)
                         continue
                     # XXX: log here if symbol could not be found?
                     frame['function'] = sfrm.get('symbol_name') or \