mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:21:06 +08:00
# Conflicts: # .vscode/launch.json # CONTRIBUTING.old.md # code/lib/cli/tsconfig.json # scripts/tsconfig.json
16 lines
352 B
Markdown
16 lines
352 B
Markdown
# Storybook Logger
|
|
|
|
Any client-side logging that is done through storybook should be done through this package.
|
|
|
|
Examples:
|
|
|
|
```js
|
|
import { logger } from '@storybook/client-logger';
|
|
|
|
logger.info('Info message');
|
|
logger.warn('Warning message');
|
|
logger.error('Error message');
|
|
```
|
|
|
|
For more information visit: [storybook.js.org](https://storybook.js.org)
|