Module: UncleKryon::Logging

Included in:
Tester, BaseIsos, Hacker, KryonAumYearAlbumParser, KryonAumYearParser, Main
Defined in:
lib/unclekryon/log.rb

Overview

Mixin for class use

Instance Method Summary collapse

Instance Method Details

#init_logObject



56
57
# File 'lib/unclekryon/log.rb', line 56

def init_log
end

#logObject



59
60
61
62
63
64
65
66
67
# 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