lib/chillout/middleware/creations_monitor.rb in chillout-0.6.0 vs lib/chillout/middleware/creations_monitor.rb in chillout-0.8.0

- old
+ new

@@ -13,10 +13,10 @@ def _call(env) status, headers, body = @app.call(env) return status, headers, body ensure if Thread.current[:creations] - @client.logger.info "Non-empty creations container found" + @client.logger.debug "Non-empty creations container found" @client.enqueue(Thread.current[:creations]) Thread.current[:creations] = nil end body.close if body && body.respond_to?(:close) && $!