From e30709f6a7ebe4a2abfdb4251b9170b87ff6ecd8 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Thu, 27 Nov 2025 07:24:53 +0100 Subject: [PATCH] Remove structured logging moved to the engine --- app/controllers/concerns/authentication.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/controllers/concerns/authentication.rb b/app/controllers/concerns/authentication.rb index 4ffca9cb0..23f82dbd2 100644 --- a/app/controllers/concerns/authentication.rb +++ b/app/controllers/concerns/authentication.rb @@ -81,8 +81,6 @@ module Authentication end def set_current_session(session) - # TODO: Release structured logging or look for alternative - logger.try :struct, " Authorized Identity##{session.identity.id}", authentication: { identity: { id: session.identity.id } } Current.session = session cookies.signed.permanent[:session_token] = { value: session.signed_id, httponly: true, same_site: :lax } end