Class: Stackify::MsgObject
Instance Method Summary collapse
-
#initialize(level, msg, caller_str, ex = nil) ⇒ MsgObject
constructor
A new instance of MsgObject.
- #to_h ⇒ Object
Constructor Details
#initialize(level, msg, caller_str, ex = nil) ⇒ MsgObject
Returns a new instance of MsgObject.
3 4 5 |
# File 'lib/stackify/utils/msg_object.rb', line 3 def initialize level, msg, caller_str, ex=nil @level, @msg, @caller_str, @ex = level, msg, caller_str, ex end |
Instance Method Details
#to_h ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/stackify/utils/msg_object.rb', line 7 def to_h { 'Msg' => @msg.to_s, 'data' => nil, 'Ex' => @ex.try(:to_h), 'Level' => @level.to_s.upcase!, #'Tags' => %w(ruby rails), 'EpochMs' => Time.now.to_f * 1000, 'Th' => Thread.current.object_id.to_s, 'TransID' => Stackify::EnvDetails.instance.request_details.try{ |d| d['uuid'] }, 'SrcMethod' => Stackify::Backtrace.method_name(@caller_str), 'SrcLine' => Stackify::Backtrace.line_number(@caller_str) } end |