c/s/e/manager: add RID and hostname to log message

Change-Id: I80f885461641b206e7a49165bade157599b405d9
Reviewed-on: https://review.monogon.dev/c/monogon/+/1570
Tested-by: Jenkins CI
Reviewed-by: Serge Bazanski <serge@monogon.tech>
diff --git a/cloud/shepherd/equinix/manager/provisioner.go b/cloud/shepherd/equinix/manager/provisioner.go
index 0557dbf..c8ce9b4 100644
--- a/cloud/shepherd/equinix/manager/provisioner.go
+++ b/cloud/shepherd/equinix/manager/provisioner.go
@@ -411,7 +411,7 @@
 	if err != nil {
 		return fmt.Errorf("while creating new device within Equinix: %w", err)
 	}
-	klog.Infof("Created a new device within Equinix (PID: %s).", nd.ID)
+	klog.Infof("Created a new device within Equinix (RID: %s, PID: %s, HOST: %s)", rsv.ID, nd.ID, hostname)
 
 	err = pr.assimilate(ctx, sess, nd.ID)
 	if err != nil {