disabled debug of system log file operations

This commit is contained in:
Bogdan Pilyugin 2024-07-07 14:39:02 +02:00
parent bc0660ef35
commit 9b10a7f23d

View File

@ -654,7 +654,6 @@ void SysLog(char *format, ...)
fwrite(tstamp, 1, strlen(tstamp), f);
vfprintf(f, format, arg);
fclose(f);
ESP_LOGI(TAG, "File written to %s", filename);
}
void LogFile(char *fname, char *format, ...)