File: org-springframework-cloud-sleuth.log.astub

package info (click to toggle)
opencensus-java 0.26.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,088 kB
  • sloc: java: 57,348; xml: 1,026; sh: 117; python: 39; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
package org.springframework.cloud.sleuth.log;

import org.checkerframework.checker.nullness.qual.Nullable;
import org.springframework.cloud.sleuth.Span;

interface SpanLogger {
  void logStartedSpan(@Nullable Span parent, Span span);
  void logStoppedSpan(@Nullable Span parent, Span span);
}