NO-JIRA: Add test print statement in system_tests_sasl_plain to detect failure
diff --git a/tests/system_tests_sasl_plain.py b/tests/system_tests_sasl_plain.py
index 55da1a1..98f4ef8 100644
--- a/tests/system_tests_sasl_plain.py
+++ b/tests/system_tests_sasl_plain.py
@@ -143,6 +143,7 @@
         sasl_failed = False
         file_open_failed = False
         for log in logs:
+            print (log)
             if log[0] == 'SERVER' and log[1] == "info" and "amqp:unauthorized-access Authentication failed [mech=PLAIN]" in log[2]:
                 sasl_failed = True
             if log[0] == "CONN_MGR" and log[1] == "error" and "Unable to open password file" in log[2] and "error: No such file or directory" in log[2]: