Commit 8a077730 authored by Bryan Godbolt's avatar Bryan Godbolt

removed some debugging output

parent 062fddaf
...@@ -187,7 +187,6 @@ void OpalLink::setSignals(double *values) ...@@ -187,7 +187,6 @@ void OpalLink::setSignals(double *values)
returnValue = OpalSetSignals( numSignals, logicalId, signalIndex, values); returnValue = OpalSetSignals( numSignals, logicalId, signalIndex, values);
if (returnValue != EOK) if (returnValue != EOK)
{ {
// OpalRT::setLastErrorMsg();
OpalRT::OpalErrorMsg::displayLastErrorMsg(); OpalRT::OpalErrorMsg::displayLastErrorMsg();
} }
} }
......
...@@ -79,7 +79,6 @@ float Parameter::getValue() ...@@ -79,7 +79,6 @@ float Parameter::getValue()
if (returnVal != EOK) if (returnVal != EOK)
{ {
// OpalRT::setLastErrorMsg();
OpalRT::OpalErrorMsg::displayLastErrorMsg(); OpalRT::OpalErrorMsg::displayLastErrorMsg();
return FLT_MAX; return FLT_MAX;
} }
...@@ -99,7 +98,7 @@ void Parameter::setValue(float val) ...@@ -99,7 +98,7 @@ void Parameter::setValue(float val)
numValues, &returnedNumValues, &value); numValues, &returnedNumValues, &value);
if (returnVal != EOK) if (returnVal != EOK)
{ {
qDebug() << __FILE__ << ":" << __LINE__ << ": Error numer: " << QString::number(returnVal); //qDebug() << __FILE__ << ":" << __LINE__ << ": Error numer: " << QString::number(returnVal);
OpalErrorMsg::displayLastErrorMsg(); OpalErrorMsg::displayLastErrorMsg();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment