timberio/timber-ruby

View on GitHub
lib/timber/events/template_render.rb

Summary

Maintainability
A
45 mins
Test Coverage
require "timber/util"
require "timber/event"
module Timber
  module Events
    # @private
    class TemplateRender < Timber::Event
      attr_reader :message, :name, :duration_ms

      def initialize(attributes)
        @name = attributes[:name]
        @duration_ms = attributes[:duration_ms]
        @message = attributes[:message]
      end

      def to_hash
        {
          template_rendered: Util::NonNilHashBuilder.build do |h|
            h.add(:name, name)
            h.add(:duration_ms, duration_ms)
          end
        }
      end
    end
  end
end