diff --git a/lib/historyKeeper.js b/lib/historyKeeper.js index 3da325191..25d86f212 100644 --- a/lib/historyKeeper.js +++ b/lib/historyKeeper.js @@ -316,7 +316,11 @@ module.exports.create = function (config, cb) { var Decrees = require("./decrees"); Decrees.load(Env, function (err) { - if (err) { + if (err && err.code !== "ENOENT") { + Log.error('DECREES_LOADING', { + error: err.code || err, + message: err.message, + }); console.error(err); } });