From ddff2b4f3ddb2659ec35881be31a8db90ebc7774 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 15 Sep 2021 08:28:05 +0930 Subject: [PATCH] fix: add better nchan logging --- app/core/utils/clients/nchan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/utils/clients/nchan.ts b/app/core/utils/clients/nchan.ts index 9a4301a97..dd45de1d3 100644 --- a/app/core/utils/clients/nchan.ts +++ b/app/core/utils/clients/nchan.ts @@ -48,7 +48,7 @@ const subscribe = async (endpoint: string) => new Promise(resolve => { }); sub.on('connect', function (_event) { - nchanLogger.debug('Connected!'); + nchanLogger.debug('NCHAN:CONNECTED:%s', endpoint); resolve(); });