cmeel-console-bridge is a cmeel distribution for `console-bridge`, a ROS-independent C++ logging package. It provides logging calls that mirror those found in `rosconsole` but for applications that do not necessarily use ROS. This package is currently at version 1.0.2.3 and receives regular updates.
pip install cmeel-console-bridgeVerified import paths — ran on the pinned version, not inferred.
This quickstart demonstrates how to import `console_bridge` and use its primary logging functions (`logDebug`, `logInform`, `logWarn`, `logError`) to output messages. The logging levels mirror those found in `rosconsole`. Note the use of C-style format strings for message interpolation.
Use `console_bridge.logInform(...)`, `console_bridge.logDebug(...)` etc., instead of `logging.info(...)` or `logging.debug(...)`. Pass arguments for formatting directly, similar to C-style `printf`.
Ensure your environment uses Python 3.8 or newer. Upgrade Python if necessary (`python -m pip install --upgrade pip` is also recommended for optimal wheel handling).
For common platforms, binary wheels are usually available. If building from source, ensure you have a C++ compiler (e.g., `build-essential` on Debian/Ubuntu, Xcode on macOS, Visual Studio on Windows) and CMake installed. Consult `cmeel` documentation for advanced build-time environment variables if issues persist.
No dependency data recorded yet.