Rack duplicates each log message

When I test the Sinatra app in my local rack box, each log message appears twice. How can I make them appear only once?

+4
source share
1 answer

disable :logging in your sinatra application. rackup adds the Rack::CommonLogger when it runs in development env (which it does by default).

+4
source

All Articles