Skip to content

Instantly share code, notes, and snippets.

@jacaetevha
Created December 11, 2011 03:35
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 jacaetevha/1458091 to your computer and use it in GitHub Desktop.
Save jacaetevha/1458091 to your computer and use it in GitHub Desktop.
module MyNamespace
class MyApp < Sinatra::Base
...
after do
$APP_LOG.info "do some logging here"
...
end
error do
$APP_LOG.error "#{$!.message}: #{$@.join("\n")}"
raise $! # yeah, yeah... I would do something else here, but this is just an example
end
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment