func()

in toolkit/log/span.go [86:96]


func (s *otelSpan) SetStatus(err error) {
	if !s.IsValid() {
		return
	}

	if err != nil {
		s.span.SetStatus(codes.Error, err.Error())
	} else {
		s.span.SetStatus(codes.Ok, "success")
	}
}