mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
20 lines
343 B
Markdown
20 lines
343 B
Markdown
# Storybook Logger
|
|
|
|
Any node logging that is done through storybook should be done through this package.
|
|
|
|
Examples:
|
|
|
|
```js
|
|
|
|
import { logger } from '@storybook/node-logger'
|
|
|
|
logger.info('Info message')
|
|
logger.warn('Warning message')
|
|
logger.error('Error message')
|
|
|
|
|
|
```
|
|
|
|
|
|
For more information visit: [storybook.js.org](https://storybook.js.org)
|