From 3297cac10f5726598246c6db6cf0efc4c51f355d Mon Sep 17 00:00:00 2001 Message-Id: <3297cac10f5726598246c6db6cf0efc4c51f355d.1718837407.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 1 Apr 2017 23:08:27 +0100 Subject: [PATCH] wip Organization: Straylight/Edgeware From: Ian Jackson --- hippotat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hippotat/__init__.py b/hippotat/__init__.py index ae13eec..6de4d14 100644 --- a/hippotat/__init__.py +++ b/hippotat/__init__.py @@ -164,7 +164,7 @@ class SlipStreamDecoder(): self._log('__init__') def _log(self, msg, **kwargs): - log_debug(DBG.SLIP_FULL, 'slip '+msg, **kwargs) + log_debug(DBG.SLIP_FULL, 'slip %s: %s' % (self._desc, msg), **kwargs) def inputdata(self, data): self._log('inputdata', d=data) -- [mdw]