Skip to content

Commit

Permalink
fix: log missing config as info
Browse files Browse the repository at this point in the history
Avoid spamming Sentry with this event.
  • Loading branch information
dessant committed Jun 24, 2018
1 parent 78527ba commit 5d4c58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = async robot => {
try {
let repoConfig = await getMergedConfig(context, file);
if (!repoConfig) {
log.warn({repo, file}, 'Missing config');
log.info({repo, file}, 'Missing config');
repoConfig = {perform: false};
}
const {error, value} = schema.validate(repoConfig);
Expand Down

0 comments on commit 5d4c58f

Please sign in to comment.