I solved the problem.
Answer: in Rails 3, filter_parameter_logging in ActionController deprecated and has no effect, so delete this line and set 'config.filter_parameters' to config/application.rb instead, for example:
config.filter_parameters += [:password, :password_confirmation]
The problem is resolved.
Rajesh omanakuttan
source share