我需要一个与 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
这适用于 Rails 3,但它需要 Rails 2.3.x 中的功能。