Add more messages to the gitOTA

This commit is contained in:
Robert Strouse 2023-12-30 21:28:20 -08:00
parent 0710445b27
commit 7b08f6acb4
2 changed files with 2 additions and 1 deletions

View file

@ -456,7 +456,7 @@ int8_t GitUpdater::downloadFile() {
}
free(buff);
if(len < total) {
Serial.println("Error downloading file");
Serial.println("Error downloading file!!!");
return -42;
}
@ -470,6 +470,7 @@ int8_t GitUpdater::downloadFile() {
}
}
else {
Serial.printf("Invalid HTTP Code... %d", httpCode);
return httpCode;
}
}