Skip to content
Snippets Groups Projects
Commit 870d0134 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

removed debug output

parent 6d7764a9
No related branches found
No related tags found
No related merge requests found
......@@ -108,8 +108,7 @@ void KinematicUnitSimulation::simulationFunction()
{
double change = (it->second.velocity * timeDeltaInSeconds);
double randomNoiseValue = distribution(generator) ;
ARMARX_INFO << deactivateSpam() << VAROUT(randomNoiseValue);
double randomNoiseValue = distribution(generator);
change += randomNoiseValue;
newAngle = it->second.angle + change;
}
......@@ -159,7 +158,6 @@ void KinematicUnitSimulation::simulationFunction()
void KinematicUnitSimulation::switchControlMode(const NameControlModeMap& targetJointModes, const Ice::Current& c)
{
bool aValueChanged = false;
ARMARX_VERBOSE << "setting ControlModes " << targetJointModes.size();
NameControlModeMap changedControlModes;
{
boost::mutex::scoped_lock(jointStatesMutex);
......@@ -183,7 +181,6 @@ void KinematicUnitSimulation::switchControlMode(const NameControlModeMap& target
ARMARX_WARNING << "Could not find joint with name " << targetJointName;
}
}
ARMARX_INFO << "sending " << changedControlModes.size() << " new modes " << aValueChanged;
// only report control modes which have been changed
listenerPrx->reportControlModeChanged(changedControlModes, aValueChanged);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment