Skip to content
Snippets Groups Projects
Commit 824b9790 authored by Tobias Gröger's avatar Tobias Gröger
Browse files

T

parent d08ce3d1
No related branches found
No related tags found
No related merge requests found
Pipeline #19031 canceled
......@@ -153,11 +153,14 @@ namespace armarx
{
// if (state.norm() >= oldState.norm())
// {
std::cout << "====TargetZero:\nTarget:\n"
<< target << "\nstate:\n"
<< state << "\noldst:\n"
<< oldState << "\ndelta:\n"
<< delta << "\nfactor: " << factor << "\n====\n";
std::stringstream ss;
ss << "====TargetZero:\nTarget:\n"
<< target << "\nstate:\n"
<< state << "\noldst:\n"
<< oldState << "\ndelta:\n"
<< delta << "\nfactor: " << factor << "\n====\n";
std::string s = ss.str();
ARMARX_RT_LOGF_IMPORTANT("%s", s);
// throw LocalException("haeee");
// }
......
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