ruby-on-rails – 如何在Rails中记录user_name?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在Rails中记录user_name?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Rails 3中使用Devise.我想在production.log中看到current_user的名字.

我想像这样配置rails:

config.log_tags = [:user_name]

解决方法

我发现这个小巧棘手但工作的解决方案.

监督员将用户信息存储在会话中,但req.session不可用于记录.

所以你必须添加到config / application.rb

config.middleware.delete(ActionDispatch::Cookies)
config.middleware.delete(ActionDispatch::Session::CookieStore)
config.middleware.insert_before(Rails::Rack::Logger,ActionDispatch::Session::CookieStore)
config.middleware.insert_before(ActionDispatch::Session::CookieStore,ActionDispatch::Cookies)

然后创建文件config / initializers / logging.rb

Rails.configuration.log_tags = [
  proc do |req|
    if req.session["warden.user.user.key"].nil?
      "Anonym"
    else
      "user_id:#{req.session["warden.user.user.key"][0][0]}"
    end
  end
]

现在我看到这个匿名:

[Anonym] Served asset ...

这为用户

[user_id:1] Served asset ...
原文链接:https://www.f2er.com/ruby/272581.html

猜你在找的Ruby相关文章