From 0a4381f09c3c0ca6a1d94d7bd2b421c7da7429f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Mon, 20 May 2019 11:02:49 +0200 Subject: [PATCH] Update device debug operator --- libnymea/plugin/device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnymea/plugin/device.cpp b/libnymea/plugin/device.cpp index d47e8b63..09c60580 100644 --- a/libnymea/plugin/device.cpp +++ b/libnymea/plugin/device.cpp @@ -264,8 +264,8 @@ Device *Devices::findById(const DeviceId &id) QDebug operator<<(QDebug dbg, Device *device) { dbg.nospace() << "Device(" << device->name(); - dbg.nospace() << ", id" << device->id(); - dbg.nospace() << ", deviceClassId" << device->deviceClassId() << ")"; + dbg.nospace() << ", id: " << device->id().toString(); + dbg.nospace() << ", deviceClassId: " << device->deviceClassId().toString() << ")"; return dbg.space(); }