diff server/dump.py @ 129:de950be796dd

log errors too
author Matt Johnston <matt@ucc.asn.au>
date Thu, 11 Oct 2012 20:41:52 +0800
parents 6c18e0d12276
children
line wrap: on
line diff
--- a/server/dump.py	Sat Oct 06 23:58:37 2012 +0800
+++ b/server/dump.py	Thu Oct 11 20:41:52 2012 +0800
@@ -145,7 +145,11 @@
 
     while True:
         l = readline(sock)
-        print l
+	if not l:
+		print '.',
+		sys.stdout.flush()
+	else:
+		print l
 
 testcount = 0