Skip to content

Commit 5d4c58f

Browse files
author
dessant
committed
fix: log missing config as info
Avoid spamming Sentry with this event.
1 parent 78527ba commit 5d4c58f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module.exports = async robot => {
3131
try {
3232
let repoConfig = await getMergedConfig(context, file);
3333
if (!repoConfig) {
34-
log.warn({repo, file}, 'Missing config');
34+
log.info({repo, file}, 'Missing config');
3535
repoConfig = {perform: false};
3636
}
3737
const {error, value} = schema.validate(repoConfig);

0 commit comments

Comments
 (0)