跳至内容 跳至搜索
方法
L

实例公共方法

log_at(level, **options)

为每个请求设置不同的日志级别。

# Use the debug log level if a particular cookie is set.
class ApplicationController < ActionController::Base
  log_at :debug, if: -> { cookies[:debug] }
end
# File actionpack/lib/action_controller/metal/logging.rb, line 17
def log_at(level, **options)
  around_action ->(_, action) { logger.log_at(level, &action) }, **options
end