From 6883d72ad13bed277e7f64b7aecab640121886c3 Mon Sep 17 00:00:00 2001 From: Alan Gutierrez Date: Sun, 4 Jun 2017 01:50:13 -0500 Subject: [PATCH] Remove debugging messages. --- base.js | 1 - readable.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/base.js b/base.js index 428e8a7..7471813 100644 --- a/base.js +++ b/base.js @@ -34,7 +34,6 @@ Staccato.prototype._uncatch = function () { } Staccato.prototype._cancel = function () { - console.log('cancelling') if (this._delta != null) { this._delta.cancel([]) this._delta = null diff --git a/readable.js b/readable.js index 3361f49..755f634 100644 --- a/readable.js +++ b/readable.js @@ -22,12 +22,10 @@ Readable.prototype.read = cadence(function (async) { var loop = async(function () { if (!this._readable) { waited = true - console.log('waiting') this._delta = delta(async()).ee(this.stream).on('readable') this._destructible.addDestructor('delta', this, '_cancel') } }, function () { - console.log('resuming', waited, this._readable, this.destroyed) if (!this._readable) { this._delta = null this._destructible.invokeDestructor('delta')