Method: Sentry::Breadcrumb#initialize
- Defined in:
- lib/sentry/breadcrumb.rb
permalink #initialize(category: nil, data: nil, message: nil, timestamp: nil, level: nil, type: nil) ⇒ Breadcrumb
Returns a new instance of Breadcrumb.
26 27 28 29 30 31 32 33 |
# File 'lib/sentry/breadcrumb.rb', line 26 def initialize(category: nil, data: nil, message: nil, timestamp: nil, level: nil, type: nil) @category = category @data = data || {} @timestamp = || Sentry.utc_now.to_i @type = type self. = self.level = level end |