Output debugging info to log

[skip ci]
This commit is contained in:
David Cook
2024-07-17 14:32:28 +10:00
parent a66fec0b26
commit eb7bb48813

View File

@@ -13,7 +13,10 @@ class FeatureToggleConstraint
end
def enabled?(request)
OpenFoodNetwork::FeatureToggle.enabled?(@feature, current_user(request))
user = current_user(request)
enabled = OpenFoodNetwork::FeatureToggle.enabled?(@feature, user)
Rails.logger.info "FeatureToggleConstraint #{@feature} enabled: #{enabled.to_s}; for user: #{user&.id.to_s}; path: #{request.path}"
enabled
end
def current_user(request)