Merge pull request 'tracer: add Context init to NewOptions' (#323) from tracerctx into v3

Reviewed-on: #323
This commit is contained in:
Василий Толстов 2024-03-11 01:13:01 +03:00
commit f29a346434

View File

@ -160,6 +160,7 @@ func NewSpanOptions(opts ...SpanOption) SpanOptions {
func NewOptions(opts ...Option) Options {
options := Options{
Logger: logger.DefaultLogger,
Context: context.Background(),
}
for _, o := range opts {
o(&options)