This module provides API to log different system/application events.
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');
API for logging
core/log
This module provides API to log different system/application events.