mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
Avoid displaying "prettify pipeline error" if there is no error (#4551)
This commit is contained in:
parent
9e3085d107
commit
9db15542dc
2 changed files with 9 additions and 2 deletions
5
.changeset/slow-wasps-glow.md
Normal file
5
.changeset/slow-wasps-glow.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@verdaccio/logger-prettify': patch
|
||||
---
|
||||
|
||||
Avoid displaying "prettify pipeline error" if there is no error
|
|
@ -110,8 +110,10 @@ export default function (opts) {
|
|||
});
|
||||
|
||||
pipeline(source, stream, destination, (err) => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('prettify pipeline error ', err);
|
||||
if (err) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('prettify pipeline error ', err);
|
||||
}
|
||||
});
|
||||
return stream;
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue