UNPKG

bybit-api

Version:

Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.

25 lines 637 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DefaultLogger = void 0; exports.DefaultLogger = { /** Ping/pong events and other raw messages that might be noisy */ silly: (...params) => { // console.log(params); }, debug: (...params) => { console.log(params); }, notice: (...params) => { console.log(params); }, info: (...params) => { console.info(params); }, warning: (...params) => { console.error(params); }, error: (...params) => { console.error(params); }, }; //# sourceMappingURL=logger.js.map