core: log Broker's id in repr.

pull/167/head
David Wilson 7 years ago
parent f4ba66e3ee
commit e3209d1de0

@ -1362,7 +1362,7 @@ class Broker(object):
self._thread.join() self._thread.join()
def __repr__(self): def __repr__(self):
return 'Broker()' return 'Broker(%#x)' % (id(self),)
class ExternalContext(object): class ExternalContext(object):

Loading…
Cancel
Save