Method: Sentry::Backtrace#to_s

Defined in:
lib/sentry/backtrace.rb

#to_sObject

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.

API:

  • private



79
80
81
82
83
84
85
# File 'lib/sentry/backtrace.rb', line 79

def to_s
  content = []
  lines.each do |line|
    content << line
  end
  content.join("\n")
end