Update log.d

Fix indentation
This commit is contained in:
abraunegg 2024-02-12 16:45:55 +11:00
parent c7bfd0da10
commit 7621bbab65

View file

@ -25,15 +25,15 @@ shared MonoTime lastInsertedTime;
class LogBuffer {
private:
string[3][] buffer;
Mutex bufferLock;
string[3][] buffer;
Mutex bufferLock;
Condition condReady;
string logFilePath;
bool writeToFile;
bool verboseLogging;
bool debugLogging;
Thread flushThread;
bool isRunning;
string logFilePath;
bool writeToFile;
bool verboseLogging;
bool debugLogging;
Thread flushThread;
bool isRunning;
bool sendGUINotification;
public: