Skip to content

Commit

Permalink
Fixed log
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-mulligan committed Nov 22, 2023
1 parent dc69c4a commit ca54c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions productnameextractor/src/main/java/messenger/Messenger.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProp
// if (!cveIds.contains(affectedProduct.getCveId())) cveIds.add(affectedProduct.getCveId());
// }

logger.info("Sending jobs to patchfinder and fixfinder...");
// logger.info("Sending jobs to patchfinder and fixfinder...");
String response = genJson(cveId);
channel.basicPublish("", patchFinderOutputQueue, null, response.getBytes(StandardCharsets.UTF_8));
channel.basicPublish("", fixFinderOutputQueue, null, response.getBytes(StandardCharsets.UTF_8));
logger.info("Jobs have been sent!\n\n");
logger.info("Jobs have been sent to the Patchfinder and Fixfinder!\n");
}

// Acknowledge job after completion
Expand Down

0 comments on commit ca54c06

Please sign in to comment.