Skip to content

Commit

Permalink
logs: don’t warn for autoReplace parse failure
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Apr 27, 2020
1 parent 44c9933 commit d63c92a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/workers/branch/auto-replace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export async function checkBranchDepsMatchBaseDeps(
);
return getDepsSignature(baseDeps) === getDepsSignature(branchDeps);
} catch (err) /* istanbul ignore next */ {
logger.warn('Failed to parse branchContent');
logger.info('Failed to parse branchContent - rebasing');
return false;
}
}
Expand Down

0 comments on commit d63c92a

Please sign in to comment.