Merge pull request #69 from sebastianneb/68-debug
Fix for issue #68 by using self._log_debug instead of this._log.debug
This commit is contained in:
commit
bb53c01fe8
|
@ -38,7 +38,7 @@ 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) {
|
||||||
this._log.debug('Subscription started.');
|
self._log.debug('Subscription started.');
|
||||||
self._subscription = subscription;
|
self._subscription = subscription;
|
||||||
return self;
|
return self;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user