diff --git a/src/main/java/com/uid2/shared/optout/OptOutCloudSync.java b/src/main/java/com/uid2/shared/optout/OptOutCloudSync.java index 4aa7f118..a6e0b19b 100644 --- a/src/main/java/com/uid2/shared/optout/OptOutCloudSync.java +++ b/src/main/java/com/uid2/shared/optout/OptOutCloudSync.java @@ -198,8 +198,8 @@ public boolean refresh(Instant now, ICloudStorage fsCloud, ICloudStorage fsLocal if (deltasToMerge.size() == 0) { LOGGER.warn("Skip partition produce due to no delta files found between now and last partition"); } else { - LOGGER.debug("sending " + this.eventMergeDelta); - vertx.eventBus().send(this.eventMergeDelta, Utils.toJson(deltasToMerge)); + LOGGER.info("publishing partition.produce event with {} delta files", deltasToMerge.size()); + vertx.eventBus().publish(this.eventMergeDelta, Utils.toJson(deltasToMerge)); } } } else if (this.handlerIndexUpdate != null) {