diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-08-06 10:03:11 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-08-11 17:29:34 +0200 |
| commit | 7f1f8f5edf36b0885b0f2b746e28a2f9bde8f4f0 (patch) | |
| tree | d434f7499eb84cb41f1f4f880c93fa7dba6491dc /src/init.cpp | |
| parent | Add information to errors in ConnectBlock, CheckBlock (diff) | |
| download | discoin-7f1f8f5edf36b0885b0f2b746e28a2f9bde8f4f0.tar.xz discoin-7f1f8f5edf36b0885b0f2b746e28a2f9bde8f4f0.zip | |
Move mempool rejections to new debug category
Move mempool rejections to debug category `mempoolrej`, to make it possible
to show them without enabling the entire category `mempool` which is
high volume.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index ef1c39db2..085e04fdf 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -373,7 +373,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageOpt("-flushwallet", strprintf("Run a thread to flush wallet periodically (default: %u)", 1)); strUsage += HelpMessageOpt("-stopafterblockimport", strprintf("Stop running after importing blocks from disk (default: %u)", 0)); } - string debugCategories = "addrman, alert, bench, coindb, db, lock, rand, rpc, selectcoins, mempool, net, proxy, prune"; // Don't translate these and qt below + string debugCategories = "addrman, alert, bench, coindb, db, lock, rand, rpc, selectcoins, mempool, mempoolrej, net, proxy, prune"; // Don't translate these and qt below if (mode == HMM_BITCOIN_QT) debugCategories += ", qt"; strUsage += HelpMessageOpt("-debug=<category>", strprintf(_("Output debugging information (default: %u, supplying <category> is optional)"), 0) + ". " + |