File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ const CLogCategoryDesc LogCategories[] =
180
180
#endif
181
181
{BCLog::UTIL, " util" },
182
182
{BCLog::BLOCKSTORE, " blockstorage" },
183
+ {BCLog::TXRECONCILIATION, " txreconciliation" },
183
184
{BCLog::ALL, " 1" },
184
185
{BCLog::ALL, " all" },
185
186
};
@@ -280,6 +281,8 @@ std::string LogCategoryToStr(BCLog::LogFlags category)
280
281
return " util" ;
281
282
case BCLog::LogFlags::BLOCKSTORE:
282
283
return " blockstorage" ;
284
+ case BCLog::LogFlags::TXRECONCILIATION:
285
+ return " txreconciliation" ;
283
286
case BCLog::LogFlags::ALL:
284
287
return " all" ;
285
288
}
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ namespace BCLog {
66
66
#endif
67
67
UTIL = (1 << 25 ),
68
68
BLOCKSTORE = (1 << 26 ),
69
+ TXRECONCILIATION = (1 << 27 ),
69
70
ALL = ~(uint32_t )0 ,
70
71
};
71
72
enum class Level {
You can’t perform that action at this time.
0 commit comments