From 13a43a2ce487d274e4057c7c7b1e1e8e59d5a40d Mon Sep 17 00:00:00 2001 From: Bennett Buchanan Date: Mon, 23 Apr 2018 13:36:27 -0700 Subject: [PATCH] bf: ZENKO-272 Undefined error logger --- extensions/replication/tasks/ReplicateObject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/replication/tasks/ReplicateObject.js b/extensions/replication/tasks/ReplicateObject.js index 344c71f8e..8a99b1ee4 100644 --- a/extensions/replication/tasks/ReplicateObject.js +++ b/extensions/replication/tasks/ReplicateObject.js @@ -142,7 +142,7 @@ class ReplicateObject extends BackbeatTask { const kafkaEntries = [updatedSourceEntry.toKafkaEntry(this.site)]; return this.replicationStatusProducer.send(kafkaEntries, err => { if (err) { - this.log.error( + log.error( 'error publishing entry to replication status topic', { method: 'ReplicateObject._publishReplicationStatus', topic: this.repConfig.replicationStatusTopic,