Removed debug output from device opening process

Eliminated a console output line that displayed the device being opened.
This cleans up the user interface by preventing unnecessary information
from cluttering the output, leading to a more streamlined user
experience when opening a device.
This commit is contained in:
Kumi 2024-02-17 18:14:17 +01:00
parent 3e8294c4f1
commit c1525cb9e5
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -130,8 +130,6 @@ lms_device_t *openDevice(const std::string &info) {
info_string = deviceList[0];
}
cout << "Opening device: " << info_string << endl;
lms_device_t *dev = NULL;
if (LMS_Open(&dev, info_string.c_str(), NULL)) {
error();