Skip to content

Instantly share code, notes, and snippets.

@hone
Created January 13, 2011 22:56
Show Gist options
  • Save hone/778786 to your computer and use it in GitHub Desktop.
Save hone/778786 to your computer and use it in GitHub Desktop.
module Rack
class LogplexException
def initialize(app)
@app = app
end
def call(env)
begin
body = @app.call(env)
rescue
puts $!
puts $!.backtrace
raise
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment