From 1a6bc93632d6e3627f48c890bb1ad6121e8376f4 Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Mon, 15 Jan 2024 21:25:28 -0600 Subject: [PATCH] Update Logging.md --- docs/Logging.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/Logging.md b/docs/Logging.md index d83fb6a..63e4a1f 100644 --- a/docs/Logging.md +++ b/docs/Logging.md @@ -101,8 +101,6 @@ void extraData(String &r){ ``` To embed this custom HTML text in the Web Log, call `homeSpan.setWebLogCallback(extraData)` in your sketch. - -Note that *r* is being passed as a reference and already includes all the HTML text the Web Log has produced to set up the page and create the initial table. You should therefore *extend* this String using `+=`. Do not simple assign this variable to a new String with `=` or you will overwrite all the HTML already produced! ---