Remove stats saving console log

This commit is contained in:
Cohee 2023-08-10 20:02:50 +03:00
parent 03ce4a2cb9
commit 25cd063bf9

View File

@ -165,7 +165,7 @@ async function loadStatsFile(chatsPath, charactersPath) {
*/
async function saveStatsToFile() {
if (charStats.timestamp > lastSaveTimestamp) {
console.debug("Saving stats to file...");
//console.debug("Saving stats to file...");
await writeFile(statsFilePath, JSON.stringify(charStats));
lastSaveTimestamp = Date.now();
} else {