Method: Sentry::Configuration#stacktrace_builder

Defined in:
lib/sentry/configuration.rb

#stacktrace_builderObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

[View source]

640
641
642
643
644
645
646
647
648
649
# File 'lib/sentry/configuration.rb', line 640

def stacktrace_builder
  @stacktrace_builder ||= StacktraceBuilder.new(
    project_root: @project_root.to_s,
    app_dirs_pattern: @app_dirs_pattern,
    linecache: @linecache,
    context_lines: @context_lines,
    backtrace_cleanup_callback: @backtrace_cleanup_callback,
    strip_backtrace_load_path: @strip_backtrace_load_path
  )
end