标签: ruby-on-rails ruby devise graylog2
有没有办法在rails日志中包含登录用户?我正在使用devise和graylog2,后者我认为这个答案是无关紧要的。
答案 0 :(得分:0)
Devise提供current_user helper in the controller,可用于访问当前登录的用户。
current_user
假设用户模型具有name属性,您可以执行以下操作:
name
::Rails.logger.info "The currently logged-in user is #{current_user.name}"