class Rails::Rack::Logger

def before_dispatch(env)

def before_dispatch(env)
  request = ActionDispatch::Request.new(env)
  path = request.fullpath
  info "\n\nStarted #{request.request_method} \"#{path}\" " \
       "for #{request.ip} at #{Time.now.to_default_s}"
end