10 lines
142 B
Ruby
10 lines
142 B
Ruby
# Disable Rack logger completely
|
|
module Rack
|
|
class CommonLogger
|
|
def call(env)
|
|
# do nothing
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|