We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7832994 commit 8a1b323Copy full SHA for 8a1b323
2 files changed
OpenFlow/src/WebSocketClient.ts
@@ -200,6 +200,11 @@ export class WebSocketClient {
200
}
201
this._sendQueue = this._sendQueue.filter(function (msg: SocketMessage): boolean { return msg.id !== id; });
202
});
203
+ if (this._receiveQueue.length > 1 || this._sendQueue.length > 1) {
204
+ if (this.user !== null && this.user !== undefined) {
205
+ this._logger.debug("[" + this.user.username + "] WebSocketclient::ProcessQueue receiveQueue: " + this._receiveQueue.length + " sendQueue: " + this._sendQueue.length);
206
+ }
207
208
209
public async Send<T>(message: Message): Promise<T> {
210
return new Promise<T>(async (resolve, reject) => {
VERSION
@@ -1 +1 @@
1
-0.0.285
+0.0.286
0 commit comments