Module: Jabs

Includes:
Johnson::Nodes
Defined in:
lib/jabs.rb

Defined Under Namespace

Classes: Engine, Precompiler

Instance Attribute Summary

Attributes included from Johnson::Nodes

#value

Class Method Summary collapse

Class Method Details

.loggerObject



55
56
57
58
59
60
61
62
63
64
# File 'lib/jabs.rb', line 55

def self.logger
  @logger ||= begin
    #TODO configurable logging
    logger       = Logger.new STDOUT
    logger.level = Logger::DEBUG
    logger.progname = "jabs"
    logger.info "Started Logging"
    logger
  end
end