Skip to content

Commit

Permalink
Remove very verbose logging of all payloads going through kafka
Browse files Browse the repository at this point in the history
  • Loading branch information
atamon committed Aug 9, 2018
1 parent 061e2af commit e7de336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kafka.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function write(producerReady, topic, payload, id, callback) {
log.debug({ id }, 'Write request received, waiting for producer ready');
producerReady.then(producer => {
const isPayloadBuffer = Buffer.isBuffer(payload);
log.debug({ id, opaque, isPayloadBuffer, payload }, 'Producer ready. Writing to kafka')
log.debug({ id, opaque, isPayloadBuffer }, 'Producer ready. Writing to kafka')
callbacks.set(opaque, callback);

if (!isPayloadBuffer) {
Expand Down

0 comments on commit e7de336

Please sign in to comment.