diff --git a/framework/python/src/core/testrun.py b/framework/python/src/core/testrun.py index 262713631..26570014d 100644 --- a/framework/python/src/core/testrun.py +++ b/framework/python/src/core/testrun.py @@ -522,12 +522,13 @@ def _device_discovered(self, mac_addr): if device is not None: if mac_addr != device.mac_addr: - msg = f'Found device with mac addr: {mac_addr} but was ignored' - self._mqtt_client.send_message(mqtt.MQTTTopic.INFO, {'message': msg}) - LOGGER.info(msg) - msg = f'Expected device mac address is {device.mac_addr}' - self._mqtt_client.send_message(mqtt.MQTTTopic.INFO, {'message': msg}) - LOGGER.info(msg) + msg_found = f'Found device with mac addr: {mac_addr} but was ignored' + LOGGER.info(msg_found) + msg_expected = f'Expected device mac address is {device.mac_addr}' + LOGGER.info(msg_expected) + full_message = f'{msg_found}\n{msg_expected}' + self._mqtt_client.send_message( + mqtt.MQTTTopic.INFO, {'message': full_message}) # Ignore discovered device because it is not the target device return else: diff --git a/make/DEBIAN/control b/make/DEBIAN/control index c9b25857f..e8bd20802 100644 --- a/make/DEBIAN/control +++ b/make/DEBIAN/control @@ -1,5 +1,5 @@ Package: Testrun -Version: 2.3.4-beta.1 +Version: 2.3.4-beta.2 Architecture: amd64 Maintainer: Google Homepage: https://github.com/google/testrun