topfunky (owner)

Revisions

gist: 14585 Download_button fork
public
Public Clone URL: git://gist.github.com/14585.git
Embed All Files: show embed
custom_exceptional_logger.rb #
1
2
3
4
5
6
7
8
  # Updated for current plugin
  def log_to_exceptional(exception)
    logger.info "Exception #{exception.inspect}"
    Exceptional.handle(exception, self, request, params)
  rescue NoMethodError
    logger.info "Couldn't log to Exceptional"
  end