Move headerssync logging to BCLog::NET

This commit is contained in:
Suhas Daftuar
2022-08-30 12:09:04 -04:00
parent e9035f867a
commit 132ed7eaaa
3 changed files with 12 additions and 16 deletions

View File

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