When I test the Sinatra app in my local rack box, each log message appears twice. How can I make them appear only once?
disable :logging in your sinatra application. rackup adds the Rack::CommonLogger when it runs in development env (which it does by default).
disable :logging
rackup
Rack::CommonLogger