class Avrolution::PassthruLogger

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/avrolution.rb, line 8
def initialize(*)
  super
  @formatter = ->(_severity, _time, _progname, msg) { "#{msg}\n" }
end