diff --git a/auth/confirm.go b/auth/confirm.go
index a23cf845d3efed5b52058b05672ced050be4d584..df3e8d367cc6ba572ab26ab29f8a303f7bdae9ba 100644
--- a/auth/confirm.go
+++ b/auth/confirm.go
@@ -171,7 +171,7 @@ func sendAuthConfirm(net cmixClient, partner *id.ID,
 	}
 
 	em := fmt.Sprintf("Confirm Request with %s (msgDigest: %s) sent on round %d",
-		partner, format.DigestContents(payload), sentRound)
+		partner, format.DigestContents(payload), sentRound.ID)
 	jww.INFO.Print(em)
 	event.Report(1, "Auth", "SendConfirm", em)
 	return sentRound.ID, nil
diff --git a/auth/request.go b/auth/request.go
index 988d19480302ebbb362f99e4ee477bf7bcd9589b..17db1b2f64572d73a7601e606d72fa1d2fb5c2b1 100644
--- a/auth/request.go
+++ b/auth/request.go
@@ -164,7 +164,7 @@ func (s *state) request(partner contact.Contact, myfacts fact.FactList,
 	}
 
 	em := fmt.Sprintf("Auth Request with %s (msgDigest: %s) sent"+
-		" on round %d", partner.ID, format.DigestContents(contents), round)
+		" on round %d", partner.ID, format.DigestContents(contents), round.ID)
 	jww.INFO.Print(em)
 	s.event.Report(1, "Auth", "RequestSent", em)
 	return round.ID, nil