Add TAG_NVS

This commit is contained in:
fvanroie 2022-07-08 20:10:46 +02:00
parent 8fa7a43f2e
commit 13522244dc
2 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,7 @@ bool nvsUpdateString(Preferences& preferences, const char* key, JsonVariant valu
changed = true; // Nvs key doesnot exist, create it
if(changed) {
size_t len = preferences.putString(key, val);
LOG_DEBUG(TAG_TIME, F(D_BULLET "Wrote %s => %s (%d bytes)"), key, val, len);
LOG_DEBUG(TAG_NVS, F(D_BULLET "Wrote %s => %s (%d bytes)"), key, val, len);
}
}

View File

@ -180,6 +180,7 @@ enum {
TAG_EPRM = 30,
TAG_FILE = 31,
TAG_NVS = 32,
TAG_GPIO = 40,
TAG_ETH = 60,