From 3901d0a1669f74cd502f23170adf3e1078cf3399 Mon Sep 17 00:00:00 2001 From: Chris Anderson Date: Thu, 12 Sep 2024 08:24:38 -0700 Subject: [PATCH] cleanup log --- src/blockstore/store.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/blockstore/store.ts b/src/blockstore/store.ts index 0775fec1..db2982f5 100644 --- a/src/blockstore/store.ts +++ b/src/blockstore/store.ts @@ -152,8 +152,7 @@ export class MetaStoreImpl extends BaseStoreImpl implements MetaStore { ensureLogger(sthis, "MetaStoreImpl"), ); if (remote && opts.gateway.subscribe) { - this.logger.Debug().Str("gateway", opts.gateway.subscribe?.toString()).Msg("Gateway information"); - this.logger.Debug().Str("url", url.toString()).Msg("Subscribing to the gateway with URL"); + this.logger.Debug().Str("url", url.toString()).Msg("Subscribing to the gateway"); opts.gateway.subscribe(url, (byteHead: Uint8Array) => this.handleEventByteHead(byteHead)); } }