class Logger
Public Instance Methods
bye()
click to toggle source
# File lib/dawn/logger.rb, line 12 def bye info "#{@app} is shutting down" end
die(msg)
click to toggle source
# File lib/dawn/logger.rb, line 8 def die(msg) error(msg) Kernel.exit(-1) end
helo(app, version)
click to toggle source
# File lib/dawn/logger.rb, line 4 def helo(app, version) @app = app info "#{app} v#{version} is starting up" end