From a204b188b05258d3d31ccd9439f1bd0dcd410daf Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Tue, 2 Dec 2025 15:27:15 +0100 Subject: [PATCH] Fix: log identity ids --- 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 409d4b202..06e2df911 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.identity.present? - logger.struct(" Authorized Identity##{Current.identity.id}", authentication: { identity: { id: Current.identity.id } }) + logger.struct(authentication: { identity: { id: Current.identity.id } }) end if Current.account.present?