Norbert de Langen 113e0582d2
Merge branch 'next' into future/move-code-into-directory
# Conflicts:
#	.vscode/launch.json
#	CONTRIBUTING.old.md
#	code/lib/cli/tsconfig.json
#	scripts/tsconfig.json
2022-07-26 08:33:57 +02:00

16 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)