From 49b270915b6bc6e2c030c9ae2f1726854e935826 Mon Sep 17 00:00:00 2001 From: clauspeterhuebner Date: Tue, 8 Jul 2025 23:11:57 +0200 Subject: [PATCH] change logoutput --- backend/src/federation/authenticateCommunities.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/backend/src/federation/authenticateCommunities.ts b/backend/src/federation/authenticateCommunities.ts index d0e112d2a..bf35900e6 100644 --- a/backend/src/federation/authenticateCommunities.ts +++ b/backend/src/federation/authenticateCommunities.ts @@ -25,14 +25,7 @@ export async function startCommunityAuthentication( logger.debug('homeFedComA', homeFedComA) logger.debug('foreignFedCom', foreignFedCom) const foreignComB = await DbCommunity.findOneByOrFail({ publicKey: foreignFedCom.publicKey }) - logger.debug( - 'started with foreignComB:', - foreignComB.url, - foreignComB.publicKey.toString('hex'), - foreignComB.publicJwtKey, - foreignComB.communityUuid, - foreignComB.authenticatedAt, - ) + logger.debug('started with foreignComB:', foreignComB) // check if communityUuid is a valid v4Uuid and not still a temporary onetimecode try { const validUUid = foreignComB.communityUuid !== null ? validateUUID(foreignComB.communityUuid) : false