class RanchManager::Logger
Public Class Methods
info(msg)
click to toggle source
# File lib/ranch-manager/logger.rb, line 3 def self.info(msg) logger.info(msg) end
logger()
click to toggle source
# File lib/ranch-manager/logger.rb, line 7 def self.logger @@logger ||= ::Logger.new(STDOUT) end