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(); }