module Smith::Logger

Public Class Methods

included(base) click to toggle source
# File lib/smith/logger.rb, line 4
def self.included(base)

  if !Logging.initialized?
    Logging.init([:verbose, :debug, :info, :warn, :error, :fatal])
  end

  base.class_eval do
    include Methods
    extend Methods
  end
end