diff --git a/tests/test_dns_records.py b/tests/test_dns_records.py
index a8cb6a9ffff1483ffa3db2476219bef5a5af0693..1d593fe33e42de7c6d4a5a3cb9d5b53f025055c3 100755
--- a/tests/test_dns_records.py
+++ b/tests/test_dns_records.py
@@ -38,6 +38,7 @@ def check_dns(hostname, expected_ip):
             color = GREEN
             address = get_result(output)
             if address != expected_ip:
+                print('Expected ip was: %s, got %s' % (expected_ip, address))
                 color = RED
                 all_ok = False
         else: