mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Make "-B all" apply to plugin streams as well.
This commit is contained in:
parent
5e4942bcc0
commit
7563af4906
3 changed files with 20 additions and 10 deletions
|
@ -63,7 +63,7 @@ namespace detail {
|
|||
class DebugLogger {
|
||||
public:
|
||||
// Output goes to stderr per default.
|
||||
DebugLogger();
|
||||
DebugLogger() : file(nullptr), all(false), verbose(false) {};
|
||||
~DebugLogger();
|
||||
|
||||
void OpenDebugLog(const char* filename = 0);
|
||||
|
@ -95,6 +95,7 @@ public:
|
|||
|
||||
private:
|
||||
FILE* file;
|
||||
bool all;
|
||||
bool verbose;
|
||||
|
||||
struct Stream {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue