if (targetId.id() == null || targetId.id().isEmpty()) {
return;
}
final Landscape landscape = landscapeFetcher.landscapeNamed(landscapeName);
for (Feature feature : landscape.features()) {
if (spyIntermediary.passNoteOn(feature, targetId, note)) {
return;
}
LOG.error("Failed to handle request to note target " + targetId.id());
}