summaryrefslogtreecommitdiff
path: root/backend/file.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2018-06-16 20:47:59 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2018-12-13 17:09:20 +0100
commita8135ad40cbeb6c0c464d57010032dc033993439 (patch)
treee9bf2c11e277b7b60bb58ab37818c0eb1c998574 /backend/file.js
parent37fda8b8f9d7a6cf812478cdcfb46a32b8e9d259 (diff)
downloadbrokentalents-a8135ad40cbeb6c0c464d57010032dc033993439.tar.gz
brokentalents-a8135ad40cbeb6c0c464d57010032dc033993439.zip
Calculate and show level scaling
Diffstat (limited to 'backend/file.js')
-rw-r--r--backend/file.js2
1 files changed, 1 insertions, 1 deletions
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; })
);
}