0.1.0 • Published 6 years ago

@xazure/logger-console v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

Xazure Logger - Console Module

A module for Xazure Logger.

Logs all values to console.

Basic Usage

import logger from 'xazure-logger';
import consoleLogger from 'xazure-logger-module-console';

logger.configure({ plugins: [consoleLogger] });
logger.log('Hello');

Information

Uses the console methods error(), warn(), info(), log(), and debug() for the corresponding log levels.

If given a level other than the core levels, uses console.log().