7.0.0 • Published 8 months ago

@null-studios/universal-logger v7.0.0

Weekly downloads
-
License
-
Repository
gitlab
Last release
8 months ago

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!