diff --git a/hivemq-edge/src/main/java/com/hivemq/api/resources/impl/SamplingResourceImpl.java b/hivemq-edge/src/main/java/com/hivemq/api/resources/impl/SamplingResourceImpl.java index add34f40a..b88ad91fd 100644 --- a/hivemq-edge/src/main/java/com/hivemq/api/resources/impl/SamplingResourceImpl.java +++ b/hivemq-edge/src/main/java/com/hivemq/api/resources/impl/SamplingResourceImpl.java @@ -85,7 +85,7 @@ public SamplingResourceImpl( final String topic = URLDecoder.decode(topicUrlEncoded, StandardCharsets.UTF_8); final List samples = samplingService.getSamples(topic); if (samples.isEmpty()) { - log.info("No samples were found for the requested topic '{}'.", topic); + log.debug("No samples were found for the requested topic '{}'.", topic); return ErrorResponseUtil.errorResponse(new NoSamplesFoundError(topic)); }