add configurable webserver logging to serial
This commit is contained in:
parent
7d0880343b
commit
2c2adc9678
1 changed files with 3 additions and 1 deletions
|
@ -68,8 +68,10 @@ void SetupWebserver() {
|
||||||
requestLogger.setOutput(Serial);
|
requestLogger.setOutput(Serial);
|
||||||
// this activates the middleware
|
// this activates the middleware
|
||||||
if(configSystem.httpLogSerial == true) {
|
if(configSystem.httpLogSerial == true) {
|
||||||
Serial.println(":: [Webserver] configSystem.httpLogSerial is 'true', enable logging to serial");
|
Serial.println(":: [Webserver] serial request logging is enabled");
|
||||||
webserver.addMiddleware(&requestLogger);
|
webserver.addMiddleware(&requestLogger);
|
||||||
|
} else {
|
||||||
|
Serial.println(":: [Webserver] serial request logging is disabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
webserver.onNotFound(WebserverNotFound);
|
webserver.onNotFound(WebserverNotFound);
|
||||||
|
|
Loading…
Reference in a new issue