Awesome
Sinatra::Verbose
Sinatra verbose logging extension
Installation
Add this line to your application's Gemfile:
gem 'sinatra-verbose'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sinatra-verbose
Usage
Classic Application
To enable the verbose logger in a classic application all you need to do is require it:
require 'sinatra'
require 'sinatra/verbose' if development?
# Your classic application code goes here...
Modular Application
To enable the verbose logger in a modular application all you need to do is require it, and then, register it:
require 'sinatra/base'
require 'sinatra/verbose'
class MyApp < Sinatra::Base
configure :development do
register Sinatra::Verbose
end
# Your modular application code goes here...
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
See the LICENSE.