You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2021. It is now read-only.
I'm reading the content of the log file line by line and generate web page like that: if (SPIFFS.exists(FILENAME)) { File file = SPIFFS.open(FILENAME, "r"); String line; while (file.available()) { line = file.readStringUntil('\n'); website = website + " <div class=\"row\" style=\"padding-bottom:1em\">\n"; website = website + line; website = website + " </div>\n"; } file.close(); }
but finally for some rows I get three question marks in the end, the row also misses CR.
probably something is wrong with offset calculation or RollingFileAppender::end method.
The text was updated successfully, but these errors were encountered:
I'm reading the content of the log file line by line and generate web page like that:
if (SPIFFS.exists(FILENAME)) { File file = SPIFFS.open(FILENAME, "r"); String line; while (file.available()) { line = file.readStringUntil('\n'); website = website + " <div class=\"row\" style=\"padding-bottom:1em\">\n"; website = website + line; website = website + " </div>\n"; } file.close(); }
but finally for some rows I get three question marks in the end, the row also misses CR.
probably something is wrong with offset calculation or RollingFileAppender::end method.
The text was updated successfully, but these errors were encountered: