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.

15 lines (12 loc) 270 B
/** * Logger transport interface. * * @interface */ export default class TeqFw_Core_Shared_Api_Logger_Transport { /** * Log entry to some media (console, file, DB, service, ...). * @param {TeqFw_Core_Shared_Dto_Log.Dto} dto */ log(dto) {} }