mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
DebugLogger: add stream for storage
This commit is contained in:
parent
e2b9e81c53
commit
3d6e7c85b0
2 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,7 @@ DebugLogger::Stream DebugLogger::streams[NUM_DBGS] =
|
|||
{"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},
|
||||
{"cluster", 0, false}};
|
||||
{"cluster", 0, false}, {"storage", 0, false}};
|
||||
|
||||
DebugLogger::~DebugLogger() {
|
||||
if ( file && file != stderr )
|
||||
|
|
|
@ -57,6 +57,7 @@ enum DebugStream {
|
|||
DBG_HASHKEY, // HashKey buffers
|
||||
DBG_SPICY, // Spicy functionality
|
||||
DBG_CLUSTER, // Cluster functionality
|
||||
DBG_STORAGE, // Storage framework
|
||||
|
||||
NUM_DBGS // Has to be last
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue