Skip to content

Commit

Permalink
fix(git): don't warn on failed delete
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Sep 8, 2021
1 parent f84550b commit 056af57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/git/index.ts
Expand Up @@ -737,7 +737,7 @@ export async function commitFiles({
deletedFiles.push(fileName);
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
logger.warn({ err, fileName }, 'Cannot delete file');
logger.trace({ err, fileName }, 'Cannot delete file');
ignoredFiles.push(fileName);
}
} else if (await isDirectory(join(localDir, fileName))) {
Expand Down

0 comments on commit 056af57

Please sign in to comment.