Could someone point me to the valid values for log_level? I can’t find anything but :debug and :info.
I’m trying to turn off logging of the params values. Is that possible? Or do I have to turn off logging of the request / response altogether? I assume I could to that pointing the log to /dev/null. Yes?
Thanks much for your reply. I'd read through that already article and was hoping there might be another setting for the default logger that I just didn't know about. I'm not sure what my hosting service will let me do wrt changing the logger.
In addition to Jodi's answer, you might also have a look at
ActionController::Base.filter_parameter_logging method
to filter params values.
Thank you very much for that. I hadn't discovered that method before and, with a little experimenting, it may be just the thing. I really don't want to turn off logging; just get rid of the params values in the log.