diff --git a/fcm.go b/fcm.go index fc46814..161aea3 100644 --- a/fcm.go +++ b/fcm.go @@ -157,6 +157,10 @@ func (c *Client) Validate(ctx context.Context, message Message) (string, error) } func (c *Client) doSendRequest(ctx context.Context, req SendRequest, loggerEnabled bool) (SendResponse, error) { + + _, span := tracer.Start(ctx, "Client.doSendRequest") + defer span.End() + accessToken, err := c.ts.Token() if err != nil { return SendResponse{}, err