From 8428a581c2a2090a288c2b57387df697c5e93df9 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Thu, 16 Nov 2023 20:56:34 +0300 Subject: [PATCH] fix: add missing log categories (#5707) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Issue being fixed or feature implemented `creditpool` and `ehf` categories are missing in `logging`/`debug` RPCs 😞 ## What was done? ## How Has This Been Tested? run `debug` and `logging` RPCs and make sure these categories are listed now ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ --- src/logging.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/logging.cpp b/src/logging.cpp index e64d76c988..2c93287aeb 100644 --- a/src/logging.cpp +++ b/src/logging.cpp @@ -178,6 +178,8 @@ const CLogCategoryDesc LogCategories[] = {BCLog::COINJOIN, "coinjoin"}, {BCLog::SPORK, "spork"}, {BCLog::NETCONN, "netconn"}, + {BCLog::CREDITPOOL, "creditpool"}, + {BCLog::EHF, "ehf"}, {BCLog::DASH, "dash"}, //End Dash };