diff options
author | csguest <csguest@yyyyy.cslabs.clarkson.edu> | 2015-06-14 06:00:10 -0400 |
---|---|---|
committer | csguest <csguest@yyyyy.cslabs.clarkson.edu> | 2015-06-14 06:00:10 -0400 |
commit | 2420dacc8cc81e8240c27d3b78c80fa8cba59527 (patch) | |
tree | e177de70da44bdeeeed70b99fa7b9f8e90e989f9 /broadcast.py | |
parent | b3606eb073651b92a7f3ba7df56d6a7d697bcc13 (diff) |
Little things: Show clients and notestreams per file
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/broadcast.py b/broadcast.py index fe2b466..aaf1276 100644 --- a/broadcast.py +++ b/broadcast.py @@ -53,6 +53,8 @@ except IOError: exit() notestreams = iv.findall("./streams/stream[@type='ns']") +print len(notestreams), 'notestreams' +print len(clients), 'clients' class NSThread(threading.Thread): def run(self): @@ -70,7 +72,7 @@ class NSThread(threading.Thread): threads = [] for ns in notestreams: if not clients: - print 'WARNING: Out of clients!' + print 'WARNING: Out of clients!', break nsq = ns.findall('note') threads.append(NSThread(args=(nsq, clients.pop(0)))) |