module Logz

Constants

VERSION

Attributes

config[RW]

Public Class Methods

configure() { |config| ... } click to toggle source
# File lib/logz.rb, line 35
def self.configure
  self.config ||= Config.new
  yield(config) if block_given?
end
new(*params) click to toggle source
# File lib/logz.rb, line 30
def self.new(*params)
  configure
  MultiLogger.new(*params)
end