mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
18 lines
403 B
Go
18 lines
403 B
Go
package ext
|
|
|
|
import (
|
|
"github.com/opentracing/opentracing-go"
|
|
"github.com/opentracing/opentracing-go/log"
|
|
)
|
|
|
|
// LogError sets the error=true tag on the Span and logs err as an "error" event.
|
|
func LogError(span opentracing.Span, err error, fields ...log.Field) {
|
|
Error.Set(span, true)
|
|
ef := []log.Field{
|
|
log.Event("error"),
|
|
log.Error(err),
|
|
}
|
|
ef = append(ef, fields...)
|
|
span.LogFields(ef...)
|
|
}
|