ESPmanager icon indicating copy to clipboard operation
ESPmanager copied to clipboard

Syslog client with full remote debugging

Open sticilface opened this issue 8 years ago • 0 comments

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(); 
}

sticilface avatar Feb 21 '17 08:02 sticilface