UNPKG

okx-api

Version:

Complete Node.js SDK for OKX's REST APIs and WebSockets, with TypeScript & end-to-end tests

14 lines 438 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.log(params); }, error: (...params) => { console.error(params); }, }; //# sourceMappingURL=logger.js.map