方法
- L
實例公共方法
log_at(level, **options) 連結
設定每個 request 不同的日誌層級。
# Use the debug log level if a particular cookie is set.
class ApplicationController < ActionController::Base
log_at :debug, if: -> { cookies[:debug] }
end
設定每個 request 不同的日誌層級。
# Use the debug log level if a particular cookie is set.
class ApplicationController < ActionController::Base
log_at :debug, if: -> { cookies[:debug] }
end