mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
Avoid logging an object on compilation errors
In certain configurations Storybook might log the whole Webpack build object when warnings or errors are thrown. This was caused by a `logger.error` call inside the `index.js` catch. This fixes by logging the error only when it's an instance of an error.
This commit is contained in:
parent
6bf8ce53f9
commit
d67d2c7f69
@ -157,4 +157,8 @@ Promise.all([webpackValid, serverListening])
|
||||
process.exit(0);
|
||||
}
|
||||
})
|
||||
.catch(error => logger.error(error));
|
||||
.catch(error => {
|
||||
if (error instanceof Error) {
|
||||
logger.error(error);
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user