1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 01:50:46 +02:00

Added a check, whether the package was parsed completely.

This commit is contained in:
Felix Mauch
2019-04-10 18:01:56 +02:00
parent 3cde95a17b
commit 75d73c1c28

View File

@@ -81,7 +81,12 @@ public:
break;
}
}
if (!bp.empty())
{
LOG_ERROR("Package of type %d was not parsed completely!", static_cast<int>(type));
bp.debug();
return false;
}
return true;
}