SLING-8846 - Successfully handling clear command should be logged
diff --git a/src/main/java/org/apache/sling/distribution/journal/impl/subscriber/DistributionSubscriber.java b/src/main/java/org/apache/sling/distribution/journal/impl/subscriber/DistributionSubscriber.java
index 7f18cb4..fcefc7f 100644
--- a/src/main/java/org/apache/sling/distribution/journal/impl/subscriber/DistributionSubscriber.java
+++ b/src/main/java/org/apache/sling/distribution/journal/impl/subscriber/DistributionSubscriber.java
@@ -732,6 +732,7 @@
             // as the max between the provided offset
             // and the current clearOffset
             clearOffset.accumulateAndGet(offset, Math::max);
+            LOG.info("Handled clear command for offset {}", offset);
         } else {
             LOG.warn("Unexpected ClearCommand for non editable subscriber");
         }