geometry2 icon indicating copy to clipboard operation
geometry2 copied to clipboard

Use of deprecated logging functions

Open mikepurvis opened this issue 8 years ago • 4 comments

See: https://github.com/ros/console_bridge/blob/master/include/console_bridge/console.h#L68-L90

https://github.com/ros/geometry2/search?q=logWarn

https://github.com/ros/geometry2/search?q=logError

mikepurvis avatar Oct 20 '17 14:10 mikepurvis

Like: https://github.com/ros/rosconsole_bridge/pull/14#issuecomment-338286124 We can't fix this until we fork development away from Indigo.

tfoote avatar Oct 20 '17 18:10 tfoote

I faced the same issue recently on another package. You could work around it if you don't want to branch out just for this change: https://github.com/ros/class_loader/pull/52/files#diff-2777c9ef40eb99c5dbc7f68d8ff4a34f

mikaelarguedas avatar Oct 20 '17 18:10 mikaelarguedas

I face the same problem, and I have to modify buffer_core.cpp to work around this.

AlphaJi avatar Feb 27 '18 08:02 AlphaJi

I faced the same issue, fix was to edit buffer_core.cpp by appending CONSOLE_BRIDGE_ to every occurrence of logError/logWarning (log* in general).

TaylorDixonHD avatar Mar 09 '20 15:03 TaylorDixonHD