Skip to content

Instantly share code, notes, and snippets.

@gmcinnes
Created November 20, 2009 22:02
Show Gist options
  • Select an option

  • Save gmcinnes/239828 to your computer and use it in GitHub Desktop.

Select an option

Save gmcinnes/239828 to your computer and use it in GitHub Desktop.
module HoptoadNotifier
def logger
if defined?(Rails.logger)
Rails.logger
elsif defined?(RAILS_DEFAULT_LOGGER)
RAILS_DEFAULT_LOGGER
else
Logger.new(STDOUT)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment