Ian VanSchooten dfb9384de6 Create separate jest projects in /lib
This allows us to run some projects with node, and others with browser environment
2022-11-10 13:46:42 -05:00
..

Storybook Logger

Any node logging that is done through storybook should be done through this package.

Examples:

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