Skip to content

Commit

Permalink
fix: ignore clean error (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyj1991 authored Oct 11, 2022
1 parent 2a6eaba commit 7608a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = function clean(logdir) {
try {
fs.unlinkSync(path.join(logdir, filename));
} catch (err) /* istanbul ignore next */ {
console.error(err);
// console.error(err);
}
});
};

0 comments on commit 7608a86

Please sign in to comment.