1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

add or improve some debug messages (#6508)

This commit is contained in:
david gauchard
2019-09-12 16:08:52 +02:00
committed by GitHub
parent 0474eb9943
commit 2d1acfa9a4
2 changed files with 4 additions and 3 deletions

View File

@ -32,6 +32,7 @@ size_t StreamString::write(const uint8_t *data, size_t size) {
*(wbuffer() + newlen) = 0x00; // add null for string end
return size;
}
DEBUGV(":stream2string: OOM (%d->%d)\n", length(), newlen+1);
}
return 0;
}