Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit f32a599

Browse files
Debug issue where aggregate topic message is being rejected
1 parent 70f05f2 commit f32a599

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ const dataHandler = (messageSet, topic, partition) => Promise.each(messageSet, a
4343
return
4444
}
4545

46-
logger.debug(topic, config.AGGREGATE_SUBMISSION_TOPIC, messageJSON.payload.originalTopic, config.CREATE_SUBMISSION_TOPIC)
47-
logger.debug(topic === config.AGGREGATE_SUBMISSION_TOPIC, messageJSON.payload.originalTopic === config.CREATE_SUBMISSION_TOPIC)
46+
console.log(topic, config.AGGREGATE_SUBMISSION_TOPIC, messageJSON.payload.originalTopic, config.CREATE_SUBMISSION_TOPIC)
47+
console.log(topic === config.AGGREGATE_SUBMISSION_TOPIC, messageJSON.payload.originalTopic === config.CREATE_SUBMISSION_TOPIC)
4848

4949
return (async () => {
5050
if (topic === config.REVIEW_TOPIC) {

0 commit comments

Comments
 (0)