ryotarai/itamae

View on GitHub
lib/itamae/handler/debug.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Itamae
  module Handler
    class Debug < Base
      def event(type, payload = {})
        super
        Itamae.logger.info("EVENT:#{type} #{payload}")
      end
    end
  end
end