Skip to content

Commit

Permalink
Please linter more
Browse files Browse the repository at this point in the history
  • Loading branch information
gagbo committed Nov 3, 2023
1 parent f540e68 commit a6a75d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/autometrics/ctx.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit a6a75d9

Please sign in to comment.