David Binger wrote: > I'd put a print at the bottom of > Publisher.__init__() and see what self.logger.error_log and sys.stdout are. Or open a new stream. f = open('/tmp/x', 'w') print >>f, self.logger.error_log print >>f, sys.stdout f.close()