liquor-cabinet/lib/rack/common_logger.rb
2013-09-19 16:09:18 +02:00

10 lines
142 B
Ruby

# Disable Rack logger completely
module Rack
class CommonLogger
def call(env)
# do nothing
@app.call(env)
end
end
end