Skip to content

Commit eb97fac

Browse files
committed
Show traceback in protocol parser error handler
1 parent 2bc2b6b commit eb97fac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/network/advanceddispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def process(self):
6161
if not getattr(self, "state_" + str(self.state))():
6262
break
6363
except AttributeError:
64-
logger.error("Unknown state %s", self.state)
64+
logger.error("Unknown state %s", self.state, exc_info=True)
6565
raise
6666
except BusyError:
6767
return False

0 commit comments

Comments
 (0)