From fe0a7e90a2ec7cb88d39972c7bd08bc9483ff03f Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Fri, 30 Dec 2016 14:13:15 -0800 Subject: [PATCH] Better error output --- src/comm/UDPLink.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm/UDPLink.cc b/src/comm/UDPLink.cc index 51faba4ad..4828c6f9b 100644 --- a/src/comm/UDPLink.cc +++ b/src/comm/UDPLink.cc @@ -257,7 +257,7 @@ bool UDPLink::_hardwareConnect() QObject::connect(_socket, &QUdpSocket::readyRead, this, &UDPLink::readBytes); emit connected(); } else { - emit communicationError("UDP Link Error", "Error binding UDP port"); + emit communicationError(tr("UDP Link Error"), tr("Error binding UDP port: %1").arg(_socket->errorString())); } return _connectState; } -- 2.22.0