module UncleKryon::Logging

Mixin for class use

Public Instance Methods

init_log() click to toggle source
# File lib/unclekryon/log.rb, line 56
def init_log
end
log() click to toggle source
# File lib/unclekryon/log.rb, line 59
def log
  if !@log
    @log = UncleKryonLogger.new
    @log.progname = self.class.to_s

    init_log
  end
  return @log
end