Skip to content

Instantly share code, notes, and snippets.

/rub Secret

Created July 17, 2015 01:45
Show Gist options
  • Save anonymous/07f4911c62e39520bfa9 to your computer and use it in GitHub Desktop.
Save anonymous/07f4911c62e39520bfa9 to your computer and use it in GitHub Desktop.
require 'logger'
class MyLog
def self.log
if @logger.nil?
@logger = Logger.new STDOUT
@logger.level = Logger::DEBUG
end
@logger
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment