From bc95a0b414f0ce2fe1dbc9db491c4bb72c84638f Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 9 Feb 2018 14:35:49 +1000 Subject: [PATCH] wacom: prettify a debug message --- tuhi/wacom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhi/wacom.py b/tuhi/wacom.py index 32f6164..a5e883c 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -741,7 +741,7 @@ class WacomDevice(GObject.Object): logger.error(f'Unknown Protocol {protocol}') raise WacomCorruptDataException(f'Protocol "{protocol}" not implemented') - logger.debug(f'{self._device.name} is using {type(self._wacom_protocol)}') + logger.debug(f'{self._device.name} is using protocol {protocol}') self._wacom_protocol.connect('drawing', self._on_drawing_received) self._wacom_protocol.connect('battery-status', self._on_battery_status)