From bd4336e5889f23ba5bf6c3057d058b2eaf04f9b7 Mon Sep 17 00:00:00 2001 From: clauspeterhuebner Date: Tue, 8 Jul 2025 21:44:34 +0200 Subject: [PATCH] more log output --- backend/src/federation/authenticateCommunities.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/federation/authenticateCommunities.ts b/backend/src/federation/authenticateCommunities.ts index 06f687f82..f50068fdb 100644 --- a/backend/src/federation/authenticateCommunities.ts +++ b/backend/src/federation/authenticateCommunities.ts @@ -17,10 +17,12 @@ export async function startCommunityAuthentication( foreignFedCom: DbFederatedCommunity, ): Promise { const homeComA = await getHomeCommunity() + logger.debug('homeComA', homeComA) const homeFedComA = await DbFederatedCommunity.findOneByOrFail({ foreign: false, apiVersion: CONFIG.FEDERATION_BACKEND_SEND_ON_API, }) + logger.debug('homeFedComA', homeFedComA) const foreignComB = await DbCommunity.findOneByOrFail({ publicKey: foreignFedCom.publicKey }) logger.debug( 'started with foreignFedCom:',