Removed the console log about subscription started

This commit is contained in:
Jur Jean 2019-02-13 12:50:32 +01:00
parent 2893454e8a
commit 811368c1af

View File

@ -38,7 +38,6 @@ EventStorePersistentSubscriptionBase.prototype.start = function() {
return this._startSubscription(this._subscriptionId, this._streamId, this._bufferSize, this._userCredentials, return this._startSubscription(this._subscriptionId, this._streamId, this._bufferSize, this._userCredentials,
this._onEventAppeared.bind(this), this._onSubscriptionDropped.bind(this), this._settings) this._onEventAppeared.bind(this), this._onSubscriptionDropped.bind(this), this._settings)
.then(function(subscription) { .then(function(subscription) {
console.log('Subscription started.');
self._subscription = subscription; self._subscription = subscription;
return self; return self;
}); });