UNPKG

bitget-api

Version:

Complete Node.js & JavaScript SDK for Bitget V1-V3 REST APIs & WebSockets, with TypeScript & end-to-end tests.

17 lines 543 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. Enable this while troubleshooting. */ // eslint-disable-next-line @typescript-eslint/no-unused-vars trace: (..._params) => { // console.log(params); }, info: (...params) => { console.info(params); }, error: (...params) => { console.error(params); }, }; //# sourceMappingURL=logger.js.map