I see that the AurduinoOTA is able to do Serial.prints inside Arduino.onProgress and have it sent to the Output window wirelessly:
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
});
it seems that the ability to send to the serial monitor or serial plotter is there, but it tells me
"no port available for the port protocol network."
It seems all the pieces are here to make the serial monitor and serial plotter work but just aren't connected together.
I have a few work-arounds (telnetStream etc. ) but wondered if there is something I am not doing that would make this more seamless, or if this is on the roadmap.