Rails 2.3.xと同等のconfig.filter_parameters(Rails 3.xx)が必要です
module SampleApp
class Application < Rails::Application
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]
end
end
これはRails3で機能しますが、Rails2.3.xでその機能が必要です。