crash test 1

This commit is contained in:
tildearrow 2022-12-22 15:47:05 -05:00
parent e74d7f1922
commit 2373884b5e
1 changed files with 5 additions and 1 deletions

View File

@ -163,6 +163,9 @@ void _logFileThread() {
}
bool startLogFile(const char* path) {
logFileAvail=false;
return false;
/*
if (logFileAvail) return true;
// rotate log file if possible
@ -181,6 +184,7 @@ bool startLogFile(const char* path) {
logFileThread=new std::thread(_logFileThread);
return true;
*/
}
bool finishLogFile() {
@ -196,4 +200,4 @@ bool finishLogFile() {
fclose(logFile);
return true;
}
}