add notes re: logging and cold storage

This commit is contained in:
ansuz
2019-03-29 14:57:53 +01:00
parent 0a1971cfee
commit 51fae45cce
3 changed files with 7 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ var handleTask = function (str, path, cb) {
}
}).nThen(function () {
// remove the task file...
Fs.unlink(path, function (err) {
Fs.unlink(path, function (err) { // FIXME deletion
if (err) { console.error(err); }
cb();
});