"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; /** * A Dummy log * @module log */ var log = { debug: function debug(x) {}, warn: function warn(x) {}, info: function info(x) {}, error: function error(x) {}, success: function success(x) {}, msg: function msg(x) {} }; var _default = exports.default = log;