Index: tests/concurrent/examples/datingService.cfa
===================================================================
--- tests/concurrent/examples/datingService.cfa	(revision 25cdca5c4a8db986ee82c5ee8c23332ae17e445d)
+++ tests/concurrent/examples/datingService.cfa	(revision 28c120b20d8e0f6c63a8cff29b7b642b02f97db4)
@@ -33,4 +33,5 @@
 		signal_block( Boys[ccode] );					// restart boy to set phone number
 	} // if
+	sout | "Girl:" | PhoneNo | "is dating Boy at" | BoyPhoneNo | "with ccode" | ccode;
 	return BoyPhoneNo;
 } // DatingService girl
@@ -44,4 +45,5 @@
 		signal_block( Girls[ccode] );					// restart girl to set phone number
 	} // if
+	sout | " Boy:" | PhoneNo | "is dating Girl" | GirlPhoneNo | "with ccode" | ccode;
 	return GirlPhoneNo;
 } // DatingService boy
@@ -58,5 +60,4 @@
 	yield( random( 100 ) );								// don't all start at the same time
 	unsigned int partner = girl( TheExchange, id, ccode );
-	sout | "Girl:" | id | "is dating Boy at" | partner | "with ccode" | ccode;
 	girlck[id] = partner;
 } // Girl main
@@ -76,5 +77,4 @@
 	yield( random( 100 ) );								// don't all start at the same time
 	unsigned int partner = boy( TheExchange, id, ccode );
-	sout | " Boy:" | id | "is dating Girl" | partner | "with ccode" | ccode;
 	boyck[id] = partner;
 } // Boy main
