Skip to content

Commit

Permalink
Fixes updateFromInfoResult not printed correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Puttichai committed Dec 17, 2024
1 parent f56483c commit 41b3c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libopenrave-core/environment-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -3128,7 +3128,7 @@ class Environment : public EnvironmentBase
} else {
updateFromInfoResult = pMatchExistingBody->UpdateFromKinBodyInfo(*pKinBodyInfo);
}
RAVELOG_VERBOSE_FORMAT("env=%s, update body '%s' from info result %u", GetNameId()%pMatchExistingBody->_id%updateFromInfoResult);
RAVELOG_VERBOSE_FORMAT("env=%s, update body '%s' from info result %d", GetNameId() % pMatchExistingBody->_id % static_cast<int>updateFromInfoResult);
if (updateFromInfoResult == UFIR_NoChange) {
continue;
}
Expand Down

0 comments on commit 41b3c18

Please sign in to comment.