debug message cleanup

changed some non-critical USER_PRINT debug messages into DEBUG_PRINT
This commit is contained in:
Frank
2023-07-14 16:17:42 +02:00
parent 423d3720b2
commit 5f55f91ff0
4 changed files with 17 additions and 10 deletions

View File

@@ -21,7 +21,7 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
//WLEDMM add USER_PRINT
// String temp;
// serializeJson(doc, temp);
USER_PRINTF("deserializeConfig\n");
DEBUG_PRINTF("deserializeConfig\n");
bool needsSave = false;
//int rev_major = doc["rev"][0]; // 1
@@ -1065,7 +1065,7 @@ void serializeConfig() {
usermods.addToConfig(usermods_settings);
//WLEDMM add USER_PRINT
USER_PRINTF("serializeConfig\n");
DEBUG_PRINTF("serializeConfig\n");
File f = WLED_FS.open("/cfg.json", "w");
if (f) serializeJson(doc, f);