Codebase list ros-rosconsole-bridge / upstream/0.5.2
New upstream version 0.5.2 Jochen Sprickerhof 5 years ago
5 changed file(s) with 12 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosconsole_bridge
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 0.5.2 (2018-08-03)
5 ------------------
6 * fix static destruction ordering issue on macOS (`#16 <https://github.com/ros/rosconsole_bridge/issues/16>`_)
37
48 0.5.1 (2017-11-05)
59 ------------------
4545 {
4646 public:
4747 OutputHandlerROS(void);
48 ~OutputHandlerROS();
4948 virtual void log(const std::string &text, console_bridge::LogLevel level, const char *filename, int line);
5049 };
5150
5251 struct RegisterOutputHandlerProxy
5352 {
5453 RegisterOutputHandlerProxy(void);
54 ~RegisterOutputHandlerProxy();
5555 };
5656
5757 }
00 <package>
11 <name>rosconsole_bridge</name>
2 <version>0.5.1</version>
2 <version>0.5.2</version>
33 <description>rosconsole_bridge is a package used in conjunction with console_bridge and rosconsole for connecting console_bridge-based logging to rosconsole-based logging.</description>
44
55 <author>Ioan Sucan</author>
4242
4343 OutputHandlerROS::OutputHandlerROS(void) : OutputHandler()
4444 {
45 }
46
47 OutputHandlerROS::~OutputHandlerROS(void) {
48 console_bridge::restorePreviousOutputHandler();
4945 }
5046
5147 void OutputHandlerROS::log(const std::string &text, console_bridge::LogLevel level, const char *filename, int line)
129125 console_bridge::setLogLevel(console_bridge::CONSOLE_BRIDGE_LOG_DEBUG);
130126 }
131127
128 RegisterOutputHandlerProxy::~RegisterOutputHandlerProxy()
129 {
130 console_bridge::restorePreviousOutputHandler();
132131 }
132
133 }
00 # How can we ensure that the binary goes to build dir only, not devel dir?
11 add_executable(cleanup cleanup.cpp)
22 target_link_libraries(cleanup rosconsole_bridge)
3 add_test(cleanup COMMAND cleanup)
3 add_test(NAME cleanup COMMAND cleanup)