Method: Sentry::Configuration#capture_exception_frame_locals=

Defined in:
lib/sentry/configuration.rb

#capture_exception_frame_locals=(value) ⇒ Object

Deprecated.
[View source]

169
170
171
172
173
174
175
# File 'lib/sentry/configuration.rb', line 169

def capture_exception_frame_locals=(value)
  log_warn <<~MSG
    `capture_exception_frame_locals` is now deprecated in favor of `include_local_variables`.
  MSG

  self.include_local_variables = value
end