bybit-api
Version:
Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.
16 lines • 478 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultLogger = void 0;
exports.DefaultLogger = {
/** Ping/pong events and other raw messages that might be noisy. Enable this while troubleshooting. */
trace: (..._params) => {
// console.log(_params);
},
info: (...params) => {
console.info(params);
},
error: (...params) => {
console.error(params);
},
};
//# sourceMappingURL=logger.js.map
;