added created_at

This commit is contained in:
zhitomirskiyi 2011-02-09 15:07:25 -08:00
parent d872467d2c
commit e75c285049

View file

@ -36,6 +36,7 @@ class ApplicationController < ActionController::Base
str = "controller=#{self.class} action=#{self.action_name} "
if current_user
str << "uid=#{current_user.id}"
str << "created_at=#{current_user.created_at.to_date.to_s}" if current_user.created_at
else
str << 'uid=nil'
end