From 17060992c79946e6363c408656ceb24194b0b0a3 Mon Sep 17 00:00:00 2001 From: Erik Pettersson Date: Wed, 18 Dec 2024 22:42:49 +0100 Subject: [PATCH] chore(logging): fix typo in logging.go --- opentelemetry/instrumentation/app/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentelemetry/instrumentation/app/logger.go b/opentelemetry/instrumentation/app/logger.go index 327f30b80f..e2ff6869fe 100644 --- a/opentelemetry/instrumentation/app/logger.go +++ b/opentelemetry/instrumentation/app/logger.go @@ -27,7 +27,7 @@ func handlerWithSpanContext(handler slog.Handler) *spanContextLogHandler { return &spanContextLogHandler{Handler: handler} } -// spanContextLogHandler is an slog.Handler which adds attributes from the +// spanContextLogHandler is a slog.Handler which adds attributes from the // span context. type spanContextLogHandler struct { slog.Handler