7.0.0 • Published 8 months ago
@null-studios/universal-logger v7.0.0
Logger
Common logger used to do basic logging.
yarn add @null-studios/universal-logger
Usage
application.tsx
import { createLogger } from 'universal-logger';
const logger = createLogger(__filename);
logger.info('hello world!');
// [application] hello world!