diff --git a/pkg/autometrics/ctx.go b/pkg/autometrics/ctx.go index c5458a4..73cb129 100644 --- a/pkg/autometrics/ctx.go +++ b/pkg/autometrics/ctx.go @@ -269,7 +269,8 @@ func FillTracingAndCallerInfo(ctx context.Context) context.Context { // NOTE: This also means that goroutines that outlive their as the caller will not have access to parent // caller information, but hopefully by that point we got all the necessary accesses done. // If not, it is a convenience we accept to give up to prevent memory usage from exploding. - PushFunctionName(ctx, callInfo.Current) + // TODO: once settled on a login library, log the error instead of ignoring it + _ = PushFunctionName(ctx, callInfo.Current) return ctx }