Skip to content

Instantly share code, notes, and snippets.

@macarthy
Created August 25, 2011 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macarthy/1170094 to your computer and use it in GitHub Desktop.
Save macarthy/1170094 to your computer and use it in GitHub Desktop.
use the rails or merb logger if in use
# stolen from delayed_job
cattr_accessor :logger
self.logger = if defined?(Merb::Logger)
Merb.logger
elsif defined?(RAILS_DEFAULT_LOGGER)
RAILS_DEFAULT_LOGGER
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment