UNPKG

343 BMarkdownView Raw
1# Storybook Logger
2
3Any node logging that is done through storybook should be done through this package.
4
5Examples:
6
7```js
8import { logger } from '@storybook/node-logger';
9
10logger.info('Info message');
11logger.warn('Warning message');
12logger.error('Error message');
13```
14
15For more information visit: [storybook.js.org](https://storybook.js.org)