Closed traversaro closed 5 months ago
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update the release notes by adding a file in doc/release/<target_branch>
, based on your changes.
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update the release notes by adding a file in
doc/release/<target_branch>
, based on your changes.
I think that the fix is minimal so probably it does not make sense to add a release note for this, @randaz81 if you like it feel free to let me know.
Coverage variation | Diff coverage |
---|---|
:white_check_mark: +28.34% | :white_check_mark: 0.00% |
Codacy will stop sending the deprecated coverage status from June 5th, 2024. Learn more
The message "Database needs to be reset, IP or port number set." is printed every time the
--ip
or--socket
is passed, so it does not make sense to print as an error as it is printed even if everything is working as intended. This PR changes it fromyCError
toyCInfo
.This seems a regression from https://github.com/robotology/yarp/commit/d97ab7f6269b16b94b7187269918e41746eee5c8#diff-be8b39c3c66ca00e0f5ace04995b0d08fc83edaaff870d6d8d87dc349d7cc8a8R104 . Before that commit, the message was just printed on
stderr
, but not printed as an error.