logfile rotating implemented

This commit is contained in:
Jurij Retzlaff
2020-11-08 11:23:22 +01:00
parent 05a0f6fa62
commit acc7253ca1
13 changed files with 241 additions and 60 deletions

View File

@@ -14,8 +14,6 @@
#include <esp_http_server.h>
static const char *TAG = "example";
extern httpd_handle_t server;
httpd_handle_t start_webserver(void);

View File

@@ -433,6 +433,8 @@ void task_autodoFlow(void *pvParameter)
printf("Autoflow: doFLow wird gestartet\n");
flowisrunning = true;
doflow();
printf("Remove older log files\n");
LogFile.RemoveOld();
}
LogFile.WriteToFile("task_autodoFlow - round done");

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="2ab2f07";
const char* GIT_REV="05a0f6f";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2020-11-03 22:12";
const char* BUILD_TIME="2020-11-06 17:57";