From cc916b80defcf717310d14a2f658aacb9c7ed819 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 17 Feb 2021 17:14:24 +0100 Subject: [PATCH] add app version to logs --- src/logging/IDBLogger.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/logging/IDBLogger.js b/src/logging/IDBLogger.js index 2f2be249..751af37e 100644 --- a/src/logging/IDBLogger.js +++ b/src/logging/IDBLogger.js @@ -179,7 +179,8 @@ class IDBLogExport { asBlob() { const log = { - version: 1, + formatVersion: 1, + appVersion: this._platform.updateService?.version, items: this._items.map(i => JSON.parse(i.json)) }; const json = JSON.stringify(log);