class Sentry::Configuration

def capture_exception_frame_locals=(value)

Deprecated:
  • Use {#include_local_variables=} instead.
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