ESPmanager
ESPmanager copied to clipboard
Syslog client with full remote debugging
I'd like to enable full syslog debugging for ESPManager but also for the main app running on the ESP.
Potential lib I'm interested in using is https://github.com/arcao/Syslog, but i need a feature to easily allow changing of the appName to make it easy. https://github.com/arcao/Syslog/issues/3
Example of API..
ESPmanager manager(HTTP, SPIFFS);
void setup()
{
manager.begin();
manager.log("mainApp", "Booted");
}
void loop()
{
manager.handle();
}