* Remove/fix up some console.log()'s

This commit is contained in:
Bryan Ashby 2015-12-13 17:32:05 -07:00
parent 1b68264dc2
commit 0489f5b2dd
6 changed files with 6 additions and 46 deletions

View file

@ -26,7 +26,7 @@ function ConfigCache() {
self.cache[filePath] = hjson.parse(data);
cb(null, self.cache[filePath]);
} catch(e) {
console.log(e)
Log.error( { filePath : filePath, error : e.toString() }, 'Failed recaching');
cb(e);
}
});