File tree 2 files changed +1
-10
lines changed
2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -790,8 +790,6 @@ export abstract class BaseWebsocketClient<
790
790
wsKey : TWSKey ,
791
791
operation : WsOperation ,
792
792
) : Promise < MidflightWsRequestEvent < TWSRequestEvent > [ ] > {
793
- // console.log(new Date(), `called getWsSubscribeEventsForTopics()`, topics);
794
- // console.trace();
795
793
if ( ! topics . length ) {
796
794
return [ ] ;
797
795
}
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
12
12
WSConnectedResult ,
13
13
WS_AUTH_ON_CONNECT_KEYS ,
14
14
WS_KEY_MAP ,
15
+ WS_LOGGER_CATEGORY ,
15
16
WsTopicRequest ,
16
17
getMaxTopicsPerSubscribeEvent ,
17
18
getNormalisedTopicRequests ,
@@ -43,8 +44,6 @@ import {
43
44
} from './types/websockets/ws-api' ;
44
45
import { SignAlgorithm , signMessage } from './util/webCryptoAPI' ;
45
46
46
- const WS_LOGGER_CATEGORY = { category : 'bybit-ws' } ;
47
-
48
47
export class WebsocketClient extends BaseWebsocketClient <
49
48
WsKey ,
50
49
WsRequestOperationBybit < WsTopic >
@@ -633,9 +632,6 @@ export class WebsocketClient extends BaseWebsocketClient<
633
632
return true ;
634
633
}
635
634
636
- // console.log('isWsPing?', {
637
- // data: msg.data,
638
- // });
639
635
return false ;
640
636
}
641
637
@@ -659,9 +655,6 @@ export class WebsocketClient extends BaseWebsocketClient<
659
655
return true ;
660
656
}
661
657
662
- // console.log('isWsPong?', {
663
- // data: msg.data,
664
- // });
665
658
return false ;
666
659
}
667
660
You can’t perform that action at this time.
0 commit comments