Log streaming over websocket activated

This commit is contained in:
Martin Bauer
2023-09-08 10:26:49 +02:00
parent 149fb4fb03
commit 21ce6d5870
3 changed files with 22 additions and 17 deletions

View File

@@ -64,6 +64,7 @@ public:
}
else
return false;
return true;
}
static Logger *getInstance();
@@ -107,6 +108,6 @@ private:
Logger();
char *data_;
size_t totalSize_;
size_t currentSize_;
size_t totalSize_ = 0;
size_t currentSize_ = 0;
};