module Applb
Constants
- VERSION
Public Class Methods
logger()
click to toggle source
# File lib/applb.rb, line 5 def self.logger @logger ||= begin $stdout.sync = true Logger.new($stdout).tap do |l| l.level = Logger::INFO end end end