この平和なコードがどのように機能するか、特にログ フィルター部分について説明してください。log_attributes_filter
を呼び出すラック ファイルから割り当てたいのですがuse MongodbLogger::RackMiddleware
、どのように行うのですか?
# Rack middleware for mounted rack app (e.g Grape)
module MongodbLogger
class RackMiddleware
@@log_attributes_filter = nil
def self.log_attributes_filter=(filter)
@@log_attributes_filter = filter
end
def initialize(app)
@app = app
end
def call(env)
request = ::Rack::Request.new env
path = request.path.split('/')
log_attrs = {
params: request.params
}
log_attrs = @@log_attributes_filter.call(log_attrs) if @@log_attributes_filter
logger.mongoize(log_attrs) do
return @app.call(env)
end
end
end
end
単純に として使用する前にuse MongodbLogger::RackMiddleware
、いくつかのパラメーターをフィルター処理したいのですが、どのように適切に割り当てる必要があります@@log_attributes_filter
か?