UNPKG

bitget-api

Version:

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

14 lines 439 B
export const 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