From cb76bf10e2d58d6fc1199659cce8d09efa07bb3f Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Wed, 26 Nov 2025 13:00:09 +0100 Subject: [PATCH] No need to use try here --- saas/lib/fizzy/saas/engine.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saas/lib/fizzy/saas/engine.rb b/saas/lib/fizzy/saas/engine.rb index d5df82287..09f571131 100644 --- a/saas/lib/fizzy/saas/engine.rb +++ b/saas/lib/fizzy/saas/engine.rb @@ -28,7 +28,7 @@ module Fizzy ActiveSupport.on_load(:action_controller_base) do before_action do if Current.account.present? - logger.try(:struct, account: { queenbee_id: Current.account.external_account_id }) + logger.struct(account: { queenbee_id: Current.account.external_account_id }) end end end