2

有没有办法将登录用户包含在 Rails 日志中?我正在使用 devise 和 graylog2,我认为后者与答案无关紧要。

4

1 回答 1

0

Devisecurrent_user 在控制器中提供了一个助手,可用于访问当前登录的用户。

假设用户模型具有name属性,您可以执行以下操作:

::Rails.logger.info "The currently logged-in user is #{current_user.name}"
于 2012-11-11T18:09:37.073 回答