Avoid spam in logs during loadwallet
, listdescriptors
and probably other commands as well.
loadwallet
Before:
02021-06-24T06:31:45Z init message: Loading wallet…
12021-06-24T06:31:45Z [desc] Wallet File Version = 169900
22021-06-24T06:31:45Z [desc] Keys: 0 plaintext, 0 encrypted, 0 w/ metadata, 0 total. Unknown wallet records: 0
32021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 0 does not exist
42021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 1 does not exist
52021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 2 does not exist
62021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 0 does not exist
72021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 1 does not exist
82021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 2 does not exist
92021-06-24T06:31:45Z [desc] Wallet completed loading in 197ms
102021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 0 does not exist
112021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 1 does not exist
122021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 2 does not exist
132021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 0 does not exist
142021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 1 does not exist
152021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 2 does not exist
162021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 0 does not exist
172021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 1 does not exist
182021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 2 does not exist
192021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 0 does not exist
202021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 1 does not exist
212021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 2 does not exist
222021-06-24T06:31:45Z [desc] setKeyPool.size() = 0
232021-06-24T06:31:45Z [desc] mapWallet.size() = 0
242021-06-24T06:31:45Z [desc] m_address_book.size() = 0
252021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 0 does not exist
262021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 1 does not exist
272021-06-24T06:31:45Z [desc] External scriptPubKey Manager for output type 2 does not exist
282021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 0 does not exist
292021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 1 does not exist
302021-06-24T06:31:45Z [desc] Internal scriptPubKey Manager for output type 2 does not exist
31{
32 "name": "desc",
33 "warning": ""
34}
After:
02021-06-24T06:26:58Z init message: Loading wallet…
12021-06-24T06:26:58Z [desc] Wallet File Version = 169900
22021-06-24T06:26:58Z [desc] Keys: 0 plaintext, 0 encrypted, 0 w/ metadata, 0 total. Unknown wallet records: 0
32021-06-24T06:26:58Z [desc] Wallet completed loading in 158ms
42021-06-24T06:26:58Z [desc] setKeyPool.size() = 0
52021-06-24T06:26:58Z [desc] mapWallet.size() = 0
62021-06-24T06:26:58Z [desc] m_address_book.size() = 0
7{
8 "name": "desc",
9 "warning": ""
10}