Make "-B all" apply to plugin streams as well.

This commit is contained in:
Christian Kreibich 2024-11-15 12:34:10 -08:00
parent 5e4942bcc0
commit 7563af4906
3 changed files with 20 additions and 10 deletions

View file

@ -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 {