Using @continueSpan does not add log values in spring sleuth. I am using @continueSpan annotation but could not find a way to add log value for span in it. any references will help.
@ContinueSpan(log = "submitStream")
public IngestionResponse submitStream(final InputStream inputStream,
@SpanTag("ProducerName") @PathVariable String producerName,
@SpanTag("HttpHeaders") @RequestHeader HttpHeaders httpHeaders) {
LOGGER.info("[Upload to Stream]: Begin");
final IngestionResponse ingestionResponse = ingestionService
.ingestInputStream(inputStream, producerName, httpHeaders);
String str = null;
System.out.println(str.length());
LOGGER.info("[Upload to Stream]: Completed");
return ingestionResponse;
}