方法
- 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
来源:显示 | 在 GitHub 上
# 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