module RssNotifier

Constants

VERSION

Public Class Methods

logger() click to toggle source
# File lib/rss_notifier.rb, line 10
def self.logger
  @logger ||= begin
    l = ::Logger.new(STDOUT)
    l.level = ::Logger::INFO
    l
  end
end