@lucaapp/service-utils 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -134,6 +134,7 @@ class KafkaClient {
134
134
  const decryptedValue = await this.decryptValue(kafkaTopic, message.value);
135
135
  await this.verifySignature(kafkaTopic, decryptedValue, message.headers);
136
136
  const value = this.parseValue(decryptedValue);
137
+ this.logger.debug({ key: message.key, value, timestamp: message.timestamp }, 'Record received');
137
138
  await handler({ ...message, value });
138
139
  },
139
140
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucaapp/service-utils",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [