@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.
@@ -1878,7 +1878,6 @@ var AbracadabraWS = class extends EventEmitter {
1878
1878
  if (this.connectionAttempt) this.rejectConnectionAttempt();
1879
1879
  this.status = WebSocketStatus.Disconnected;
1880
1880
  this.emit("status", { status: WebSocketStatus.Disconnected });
1881
- console.log("[DEBUG] onClose event:", typeof event, JSON.stringify(event), "code:", event?.code);
1882
1881
  const isRateLimited = event?.code === 4429 || event === 4429;
1883
1882
  this.emit("disconnect", { event });
1884
1883
  if (isRateLimited) this.emit("rateLimited");