Reputation: 5182
Is it possible, like it is for the "password" parameter in devise for example, to declare other parameters that would need to be hidden from logs ? If possible, how should it be done ?
Upvotes: 0
Views: 26
Reputation: 7314
You add any parameters you want to filter to the file config/initializers/filter_parameter_logging.rb
# Be sure to restart your server when you modify this file.
# Configure sensitive parameters which will be filtered from the log file.
Rails.application.config.filter_parameters += [:password]
password is already filtered so just add any others to the array [:password,:hidden_parameter]
Upvotes: 1