Skip to content

Commit

Permalink
fix(bundler): don't log error when Gemfile is invalid (#6557)
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreinacher committed Jun 22, 2020
1 parent 9cb38f9 commit 97665c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/manager/bundler/extract.ts
Expand Up @@ -116,7 +116,7 @@ export async function extractPackageFile(
sourceLine = lines[lineNumber];
// istanbul ignore if
if (sourceLine === null || sourceLine === undefined) {
logger.error({ content, fileName }, 'Undefined sourceLine');
logger.info({ content, fileName }, 'Undefined sourceLine');
sourceLine = 'end';
}
if (sourceLine !== 'end') {
Expand Down

0 comments on commit 97665c4

Please sign in to comment.