Method: Sentry::Breadcrumb#initialize

Defined in:
lib/sentry/breadcrumb.rb

#initialize(category: nil, data: nil, message: nil, timestamp: nil, level: nil, type: nil) ⇒ Breadcrumb

Returns a new instance of Breadcrumb.

Parameters:

  • category (String, nil) (defaults to: nil)
  • data (Hash, nil) (defaults to: nil)
  • message (String, nil) (defaults to: nil)
  • timestamp (Time, Integer, nil) (defaults to: nil)
  • level (String, nil) (defaults to: nil)
  • type (String, nil) (defaults to: nil)
[View source]

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 = timestamp || Sentry.utc_now.to_i
  @type = type
  self.message = message
  self.level = level
end