UNPKG

@v4fire/core

Version:
14 lines (9 loc) 278 B
# core/log This module provides API to log different system/application events. ```js import log from 'core/log'; log.info('Info message'); log.warn('Some warning'); log.error('Some error', new Error('Boom!')); log.namespace('net').error('Some error with the context'); ```