From d77874b9c9665b5004e0140c4c364dc2befcf09b Mon Sep 17 00:00:00 2001 From: Seth Bertalotto Date: Thu, 5 Jun 2014 14:08:52 -0700 Subject: [PATCH] Changing "cant find meta directory" log to info I see this message a lot when shifter runs but I think it should be a warning. Is there an issue if there is no meta directory found? I'd prefer to keep that under the "quiet" flag, since silent shows warn and errors. --- lib/pack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pack.js b/lib/pack.js index 794aa5c..b6d9425 100644 --- a/lib/pack.js +++ b/lib/pack.js @@ -85,7 +85,7 @@ exports.munge = function (json, options, callback) { } } } else { - log.warn('down shifting, can\'t find a meta directory'); + log.info('down shifting, can\'t find a meta directory'); } //Cleanup.. Object.keys(json.builds).forEach(function (name) {