When a functional test failure is encountered, recommend the
corresponding log to check for the actual output when an expected
match is not found.
         except:
             pass
         if index is not 0:
-            print("ERROR: luser%s did not receive expected string:\n\n%s"
-                  % (conversant, question))
+            print("ERROR: luser%s did not receive expected string:\n\n%s\n\n"
+                  "Check the end of capture_%s.log for received data."
+                  % (conversant, question, conversant))
             success = False
             break
         print("luser%s sending: %s" % (conversant, answer))