Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce error to debug msg for mesh construction #531

Merged
merged 2 commits into from
Aug 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dartsim/src/SDFFeatures.cc
Original file line number Diff line number Diff line change
Expand Up @@ -840,8 +840,8 @@
if (!shape)
{
// The geometry element was empty, or the shape type is not supported
gzerr << "The geometry element of collision [" << _collision.Name() << "] "
<< "couldn't be created\n";
gzdbg << "The geometry element of collision [" << _collision.Name() << "] "
<< "couldn't be created\n";

Check warning on line 844 in dartsim/src/SDFFeatures.cc

View check run for this annotation

Codecov / codecov/patch

dartsim/src/SDFFeatures.cc#L843-L844

Added lines #L843 - L844 were not covered by tests
return this->GenerateInvalidId();
}

Expand Down