class Convergence::Logger

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/convergence/logger.rb, line 3
def initialize
  super($default_output || $stdout)
  self.formatter = proc { |_, _, _, msg| "#{msg}\n" }
  self.level = Logger::INFO
end

Public Instance Methods

output(msg) click to toggle source
# File lib/convergence/logger.rb, line 9
def output(msg)
  info(msg)
end