summaryrefslogtreecommitdiff
path: root/backend/file.js
diff options
context:
space:
mode:
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; })
);
}