diff options
author | Suhas Daftuar <sdaftuar@gmail.com> | 2022-08-30 12:09:04 -0400 |
---|---|---|
committer | Suhas Daftuar <sdaftuar@gmail.com> | 2022-08-30 12:09:04 -0400 |
commit | 132ed7eaaa4a47ab94db72ebfab0ef0e03caa488 (patch) | |
tree | d41c50ba02ae765da973fc96e19e3574f67182f8 /src/logging.cpp | |
parent | e9035f867a36a430998e3811385958229ac79cf5 (diff) |
Move headerssync logging to BCLog::NET
Diffstat (limited to 'src/logging.cpp')
-rw-r--r-- | src/logging.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/logging.cpp b/src/logging.cpp index 92fc31917f..73c4e458bd 100644 --- a/src/logging.cpp +++ b/src/logging.cpp @@ -165,7 +165,6 @@ const CLogCategoryDesc LogCategories[] = #endif {BCLog::UTIL, "util"}, {BCLog::BLOCKSTORE, "blockstorage"}, - {BCLog::HEADERSSYNC, "headerssync"}, {BCLog::ALL, "1"}, {BCLog::ALL, "all"}, }; @@ -264,8 +263,6 @@ std::string LogCategoryToStr(BCLog::LogFlags category) return "util"; case BCLog::LogFlags::BLOCKSTORE: return "blockstorage"; - case BCLog::LogFlags::HEADERSSYNC: - return "headerssync"; case BCLog::LogFlags::ALL: return "all"; } |