1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 11:43:22 +02:00
- Log which key-value pair was added
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-25 13:07:53 +02:00
parent 5979387e87
commit 245939824e

View File

@ -191,7 +191,9 @@ public class Client : Thread
foreach(string key; receivedKV.keys()) foreach(string key; receivedKV.keys())
{ {
/* Update the db */ /* Update the db */
connInfo.updateDB(key, receivedKV[key]); string value = receivedKV[key];
connInfo.updateDB(key, value);
logger.log("Updated key in db '"~key~"' with value '"~value~"'");
} }
} }