diff --git a/network/message/sendCmix.go b/network/message/sendCmix.go
index 44780f5c32216f8efcc3b7839ac790dc051e4983..88f351828dcf06deae9563c4413e616ed1131144 100644
--- a/network/message/sendCmix.go
+++ b/network/message/sendCmix.go
@@ -142,6 +142,9 @@ func sendCmixHelper(msg format.Message, recipient *id.ID, param params.CMIX, ins
 		//keying relationships
 		roundKeys, missingKeys := session.Cmix().GetRoundKeys(topology)
 		if len(missingKeys) > 0 {
+			jww.WARN.Printf("Failed to send on round %d to %s " +
+				"(msgDigest: %s) due to missing relationships with nodes: %s",
+				bestRound.ID, recipient, msg.Digest(), missingKeys)
 			go handleMissingNodeKeys(instance, nodeRegistration, missingKeys)
 			time.Sleep(param.RetryDelay)
 			continue
diff --git a/storage/reception/store.go b/storage/reception/store.go
index 0802ccc9832f4a4c9127fdd1e1a064de42318d08..e95f9281f28a8a5294dba598bd19703a7e0ccfdf 100644
--- a/storage/reception/store.go
+++ b/storage/reception/store.go
@@ -342,7 +342,7 @@ func (s *Store) selectIdentity(rng io.Reader, now time.Time) (IdentityUse, error
 		selected.ExtraChecks--
 	}
 
-	jww.DEBUG.Printf("Selected identity: EphId: %d  ID: %s  End: %s  StartValid: %s  EndValid: %s",
+	jww.TRACE.Printf("Selected identity: EphId: %d  ID: %s  End: %s  StartValid: %s  EndValid: %s",
 		selected.EphId.Int64(), selected.Source, selected.End.Format("01/02/06 03:04:05 pm"),
 		selected.StartValid.Format("01/02/06 03:04:05 pm"), selected.EndValid.Format("01/02/06 03:04:05 pm"))