-
Notifications
You must be signed in to change notification settings - Fork 21
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
Clean up gazebo error/warning messages #109
Comments
add another one:
|
"LogRecord has not been initialized" can be fixed by add initialization to LogRecord. Will fix it soon. |
"Warning [parser.cc:531] Converting a deprecated SDF source[data-string]" The warning is generated at "sdf.SetFromString(sdfString)" at line 462 of pygazebo.cc. SetFromString(): Any insetting model or loading world operation using a sdf string lower than 1.6 (most of our models are in version 1.5 or 1.4) will throw this warning, and it seems can not be disabled. We can set the sdf version to 1.6 when inserting to avoid this warning. |
Where does this come out? I haven't see them on my ubuntu PC. |
I have a lot of these messages during the training like the following:
|
These 2 have been sovled in #110 |
Now we have these 4 left. All have been related to the transporting module of gazebo. I have try to solve them but failed. Here are some findings during the progress.
for some unknown reason one connection is deleted right after creation.
The call path to setting up transport is: "gazebo::transport :init()" : get master uri, topic manager init, connection manager init I've tried "gazebo::transport::clearbuffer()" at each step, does not help. |
The other error messages only display at the initial phase the training. But the following two are all over the whole training process:
According to the comment in World.cc, |
Which environment or gin file can generate the 2 type of messages? I have't find them. Let me reproduce first.
|
found these Errs when running PR2 gripping task with some possibilities. |
Any idea why the Is it something to be worried about? |
There are a lot of gazebo error/warning messages. They are confusing the new users. We should find ways to avoid them:
The text was updated successfully, but these errors were encountered: