From 44c59c3d297372c63bce7cd393a15064ce9bcb07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claus-Peter=20H=C3=BCbner?= Date: Fri, 3 Feb 2023 20:52:21 +0100 Subject: [PATCH] improve logoutput --- dht-node/src/dht_node/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dht-node/src/dht_node/index.ts b/dht-node/src/dht_node/index.ts index 5ea373231..ab81792df 100644 --- a/dht-node/src/dht_node/index.ts +++ b/dht-node/src/dht_node/index.ts @@ -216,7 +216,7 @@ async function writeHomeCommunityEnries(pubKey: any): Promise { // this will NOT update the updatedAt column, to distingue between a normal update and the last announcement await DbCommunity.insert(homeCom) - logger.info(`federation home-community inserted successfully: ${homeCom}`) + logger.info(`federation home-community inserted successfully: ${JSON.stringify(homeCom)}`) }) } catch (err) { throw new Error(`Federation: Error writing HomeCommunity-Entries: ${err}`)