UNPKG

@teqfw/core

Version:

Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.

27 lines (24 loc) 863 B
/** * Default implementation for '..._Api_Logger' is a wrapper for base logger that allows to store separate namespace * for wrapper. All wrappers use the same base logger and add own namespace for the logs. * * @implements TeqFw_Core_Shared_Api_Logger */ export default class TeqFw_Core_Shared_Logger { /** * @param {TeqFw_Core_Shared_Logger_Base} base */ constructor( { TeqFw_Core_Shared_Logger_Base$: base, } ) { // VARS let _ns = this.constructor.name; // default namespace should be changed after instantiation // INSTANCE METHODS this.error = (msg, meta) => base.error(_ns, msg, meta); this.exception = (e) => base.error(_ns, e); this.info = (msg, meta) => base.info(_ns, msg, meta); this.setNamespace = (namespace) => _ns = namespace; } }