From 7b81c2b050d36968a5bb296f9b69d53f334e3554 Mon Sep 17 00:00:00 2001 From: git-directory-deploy <> Date: Thu, 25 Feb 2021 16:56:37 +0100 Subject: [PATCH] publish: log new reset generated from commit a28832e57030c8d0798e52b9e84d6498ce6d5b9a --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index aead142..e9f1862 100644 --- a/index.js +++ b/index.js @@ -235,6 +235,7 @@ async function buildAgregatedData(data, doctype) { for (let [key, value] of Object.entries(data)) { const data = await buildDataFromKey(doctype, key, value) const oldValue = await resetInProgressAggregatedData(data, doctype) + log("debug", "Dataload + oldvalue is " + data.load + " + " + oldValue + " -- makes dataload : " + (data.load += oldValue)) data.load += oldValue agregatedData.push(data) } -- GitLab