You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 14, 2022. It is now read-only.
https://github.com/ryancheung/exception_logger/blob/master/lib/exception_logger.rb#L62 def filter_sub_parameters(params, rails_filter_parameters) params.each do |key, value| if(value.class != Hash and value.class != ActiveSupport::HashWithIndifferentAccess) params[key] = '[FILTERED]' if rails_filter_parameters.include?(key.to_sym) else params[key] = filter_sub_parameters(value) end end params end
it keep raise error : as we call the same method with wrong number of params