diff --git a/goKMS/kms/akmsInterface/client/client.go b/goKMS/kms/akmsInterface/client/client.go
index 703912a8bfb1e00401956df94ab9f0663bcc6e46..19a58beb949213228442cc0c29f85c2d3478474c 100644
--- a/goKMS/kms/akmsInterface/client/client.go
+++ b/goKMS/kms/akmsInterface/client/client.go
@@ -57,7 +57,7 @@ func (c *CkmsAkmsClient) SendKSAKeysToRequestingInstances(requestID string, proc
 		return err
 	}
 
-	// TODO: also log the response body if request failed
+	logrus.Infof("Attempting to send KSA post request to AKMS with URL: %s", c.url)
 	resp, err := c.httpClient.Post(c.url, "application/json", bytes.NewBuffer(jsonData))
 	if err != nil {
 		body, err2 := io.ReadAll(resp.Body)