Skip to content

Commit

Permalink
change log level for "no samples were found"
Browse files Browse the repository at this point in the history
  • Loading branch information
DC2-DanielKrueger committed Dec 12, 2024
1 parent f29cfff commit 96321bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public SamplingResourceImpl(
final String topic = URLDecoder.decode(topicUrlEncoded, StandardCharsets.UTF_8);
final List<byte[]> 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));
}

Expand Down

0 comments on commit 96321bb

Please sign in to comment.