Change log priority for 'The mempool is now in sync!' message to NOTICE

This commit is contained in:
wiz 2021-04-13 14:03:36 +09:00
parent 2077126064
commit 089bb38e6a
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -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);
}