From 287d8914d37fd6ae671acffd390d203b30ae0f57 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Tue, 8 Jul 2025 23:03:43 +0200
Subject: [PATCH] change log output
---
backend/src/federation/authenticateCommunities.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/backend/src/federation/authenticateCommunities.ts b/backend/src/federation/authenticateCommunities.ts
index c62062405..d0e112d2a 100644
--- a/backend/src/federation/authenticateCommunities.ts
+++ b/backend/src/federation/authenticateCommunities.ts
@@ -26,9 +26,9 @@ export async function startCommunityAuthentication(
logger.debug('foreignFedCom', foreignFedCom)
const foreignComB = await DbCommunity.findOneByOrFail({ publicKey: foreignFedCom.publicKey })
logger.debug(
- 'started with foreignFedCom:',
- foreignFedCom.endPoint,
- foreignFedCom.publicKey.toString('hex'),
+ 'started with foreignComB:',
+ foreignComB.url,
+ foreignComB.publicKey.toString('hex'),
foreignComB.publicJwtKey,
foreignComB.communityUuid,
foreignComB.authenticatedAt,