From a8135ad40cbeb6c0c464d57010032dc033993439 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 16 Jun 2018 20:47:59 +0200 Subject: Calculate and show level scaling --- backend/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/file.js') diff --git a/backend/file.js b/backend/file.js index b750921..c609232 100644 --- a/backend/file.js +++ b/backend/file.js @@ -15,7 +15,7 @@ function loadFPayloads(config) { function saveFPayloads(config) { return R.curry((file, data) => Future.node((cb) => fsPath.writeFile(file, JSON.stringify(data), cb)) - .map(() => data) + .map(() => { console.log(`stored ${file}`); return data; }) ); } -- cgit v1.3.1