From 1decd09ac9b85490d026da0b3a21a7b5ad387cf9 Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Date: Thu, 1 Dec 2022 13:22:28 +1100 Subject: [PATCH] space --- src/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database.ts b/src/database.ts index 185ff26..6cb9162 100644 --- a/src/database.ts +++ b/src/database.ts @@ -49,7 +49,7 @@ export class Database { const newJson = JSON.stringify(db._content); if (oldJson !== newJson || force){ writeFileSync(this._path, JSON.stringify(this._content, null, 2)); - if (this._saveNotifs) console.log(`[${moment().format('DD/MM/YY HH:mm:ss')}]` + this._path + ' Database saved'); + if (this._saveNotifs) console.log(`[${moment().format('DD/MM/YY HH:mm:ss')}] ` + this._path + ' Database saved'); } return db; }