Package: effect
Module: Tracer
Creates a Tracer value from a tracer implementation object.
When to use
Use to create a custom tracing backend value that Effect can use when creating spans.
Details
make returns the supplied implementation object unchanged. The object must
satisfy the Tracer contract, including a span method that returns a
Span.
See
Span for the span values returned by tracer implementationsSignature
declare const make: (options: Tracer) => Tracer
Since v2.0.0