Merge pull request #67 from JurJean/remove-subscription-started-log

Remove subscription started log
This commit is contained in:
Nicolas Dextraze 2019-02-14 20:44:20 -08:00 committed by GitHub
commit 2c272a19f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
});