DebugLogger: Add cluster debugging stream

This commit is contained in:
Arne Welzel 2024-11-13 10:28:18 +01:00
parent 35eadf0ceb
commit d2633163bd
2 changed files with 3 additions and 1 deletions

View file

@ -19,7 +19,8 @@ DebugLogger::Stream DebugLogger::streams[NUM_DBGS] =
{"main-loop", 0, false}, {"dpd", 0, false}, {"packet_analysis", 0, false}, {"file_analysis", 0, false},
{"tm", 0, false}, {"logging", 0, false}, {"input", 0, false}, {"threading", 0, false},
{"plugins", 0, false}, {"zeekygen", 0, false}, {"pktio", 0, false}, {"broker", 0, false},
{"scripts", 0, false}, {"supervisor", 0, false}, {"hashkey", 0, false}, {"spicy", 0, false}};
{"scripts", 0, false}, {"supervisor", 0, false}, {"hashkey", 0, false}, {"spicy", 0, false},
{"cluster", 0, false}};
DebugLogger::DebugLogger() {
verbose = false;

View file

@ -54,6 +54,7 @@ enum DebugStream {
DBG_SUPERVISOR, // Process supervisor
DBG_HASHKEY, // HashKey buffers
DBG_SPICY, // Spicy functionality
DBG_CLUSTER, // Cluster functionality
NUM_DBGS // Has to be last
};