class RanchHand::Logger

Public Class Methods

info(msg) click to toggle source
# File lib/ranch_hand/logger.rb, line 3
def self.info(msg)
  logger.info(msg)
end
logger() click to toggle source
# File lib/ranch_hand/logger.rb, line 7
def self.logger
  @@logger ||= ::Logger.new(STDOUT)
end