@abraca/dabra 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1908,7 +1908,6 @@ var AbracadabraWS = class extends EventEmitter {
1908
1908
  if (this.connectionAttempt) this.rejectConnectionAttempt();
1909
1909
  this.status = WebSocketStatus.Disconnected;
1910
1910
  this.emit("status", { status: WebSocketStatus.Disconnected });
1911
- console.log("[DEBUG] onClose event:", typeof event, JSON.stringify(event), "code:", event?.code);
1912
1911
  const isRateLimited = event?.code === 4429 || event === 4429;
1913
1912
  this.emit("disconnect", { event });
1914
1913
  if (isRateLimited) this.emit("rateLimited");