From dd85ec2636d15c4cd7828b904358b380ed023973 Mon Sep 17 00:00:00 2001 From: SeongGino Date: Sat, 24 Aug 2024 22:55:17 -0400 Subject: [PATCH] Print device names in initial startup --- qhookermain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qhookermain.cpp b/qhookermain.cpp index 55db4ba..6b6cb0c 100644 --- a/qhookermain.cpp +++ b/qhookermain.cpp @@ -118,7 +118,7 @@ void qhookerMain::SerialInit() serialPort = new QSerialPort[serialFoundList.length()]; for(uint8_t i = 0; i < serialFoundList.length(); i++) { serialPort[i].setPort(serialFoundList[i]); - qInfo() << "Assigning port no." << i+1; + qInfo() << "Assigning" << serialFoundList[i].portName() << "to port no." << i+1; } } }