From 089bb38e6ae5af6a92e4dd293c72ecbabc56c8e2 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 13 Apr 2021 14:03:36 +0900 Subject: [PATCH] Change log priority for 'The mempool is now in sync!' message to NOTICE --- backend/src/api/mempool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/mempool.ts b/backend/src/api/mempool.ts index 4f8638c3e..81330a3ce 100644 --- a/backend/src/api/mempool.ts +++ b/backend/src/api/mempool.ts @@ -169,7 +169,7 @@ class Mempool { if (!this.inSync && transactions.length === Object.keys(this.mempoolCache).length) { this.inSync = true; - logger.info('The mempool is now in sync!'); + logger.notice('The mempool is now in sync!'); loadingIndicators.setProgress('mempool', 100); }