Slightly improve logging in LLGS tests

we're sometimes getting an exception here, and I want to see why...

llvm-svn: 262333
This commit is contained in:
Pavel Labath 2016-03-01 14:04:41 +00:00
parent ac106add0f
commit 0ddfde44ce
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class SocketPacketPump(object):
# Likely a closed socket. Done with the pump thread.
if self._logger:
self._logger.debug(
"socket read failed, stopping pump read thread")
"socket read failed, stopping pump read thread\n" + traceback.format_exc(3))
break
self._process_new_bytes(new_bytes)