From 811368c1af423d97e67f6ac252d029cd67cbab48 Mon Sep 17 00:00:00 2001 From: Jur Jean Date: Wed, 13 Feb 2019 12:50:32 +0100 Subject: [PATCH] Removed the console log about subscription started --- src/eventStorePersistentSubscriptionBase.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/eventStorePersistentSubscriptionBase.js b/src/eventStorePersistentSubscriptionBase.js index 5b471a8..d9ec31a 100644 --- a/src/eventStorePersistentSubscriptionBase.js +++ b/src/eventStorePersistentSubscriptionBase.js @@ -38,7 +38,6 @@ EventStorePersistentSubscriptionBase.prototype.start = function() { return this._startSubscription(this._subscriptionId, this._streamId, this._bufferSize, this._userCredentials, this._onEventAppeared.bind(this), this._onSubscriptionDropped.bind(this), this._settings) .then(function(subscription) { - console.log('Subscription started.'); self._subscription = subscription; return self; });