Skip to content

Commit

Permalink
Changing "cant find meta directory" log to info
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
redonkulus committed Jun 5, 2014
1 parent c3d2de7 commit d77874b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pack.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d77874b

Please sign in to comment.