设置日志标签,记录请求,调用应用程序,并刷新日志。
日志标签 (taggers
) 可以是 数组
,其中包含:request
对象响应的方法,响应 to_s
的对象或接受 request
对象实例的 Proc 对象。
方法
类公共方法
new(app, taggers = nil) 链接
源代码:显示 | 在 GitHub 上
# File railties/lib/rails/rack/logger.rb, line 15 def initialize(app, taggers = nil) @app = app @taggers = taggers || [] end
实例公共方法
call(env) 链接
源代码:显示 | 在 GitHub 上
# File railties/lib/rails/rack/logger.rb, line 20 def call(env) request = ActionDispatch::Request.new(env) env["rails.rack_logger_tag_count"] = if logger.respond_to?(:push_tags) logger.push_tags(*compute_tags(request)).size else 0 end call_app(request, env) end
实例私有方法
call_app(request, env) 链接
源代码:显示 | 在 GitHub 上
# File railties/lib/rails/rack/logger.rb, line 33 def call_app(request, env) # :doc: logger_tag_pop_count = env["rails.rack_logger_tag_count"] instrumenter = ActiveSupport::Notifications.instrumenter handle = instrumenter.build_handle("request.action_dispatch", { request: request }) handle.start logger.info { started_request_message(request) } status, headers, body = response = @app.call(env) body = ::Rack::BodyProxy.new(body) { finish_request_instrumentation(handle, logger_tag_pop_count) } if response.frozen? [status, headers, body] else response[2] = body response end rescue Exception finish_request_instrumentation(handle, logger_tag_pop_count) raise end
started_request_message(request) 链接
Started GET “/session/new” for 127.0.0.1 at 2012-09-26 14:51:42 -0700
源代码:显示 | 在 GitHub 上
# File railties/lib/rails/rack/logger.rb, line 56 def started_request_message(request) # :doc: sprintf('Started %s "%s" for %s at %s', request.raw_request_method, request.filtered_path, request.remote_ip, Time.now) end