Move Rack::CommonLogger into it's own file

This commit is contained in:
Garret Alfert
2013-09-19 16:09:18 +02:00
parent 53256ecc00
commit 6770a8cfb1
2 changed files with 10 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
# Disable Rack logger completely
module Rack
class CommonLogger
def call(env)
# do nothing
@app.call(env)
end
end
end