Removed debug statements

This commit is contained in:
John Goerzen 2008-08-05 00:07:26 -05:00
parent fe57342448
commit 1b9f04a564

View File

@ -114,9 +114,7 @@ def exitnotifymonitorloop(callback):
while 1: # Loop forever. while 1: # Loop forever.
try: try:
thrd = exitthreads.get(False) thrd = exitthreads.get(False)
print "exitnotifymonitorloop: Got thread\n"
callback(thrd) callback(thrd)
print "exitnotifymonitorloop: callback done\n"
exitthreads.task_done() exitthreads.task_done()
except Empty: except Empty:
time.sleep(1) time.sleep(1)