We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44e44c commit 375b894Copy full SHA for 375b894
src/Ros2ForUnity/Scripts/ROS2ForUnity.cs
@@ -309,7 +309,9 @@ internal ROS2ForUnity()
309
Ros2cs.Init();
310
RegisterCtrlCHandler();
311
312
- Ros2csLogger.GetInstance().LogInfo("ROS2 version: " + currentRos2Version + ". Build type: " + standalone);
+ string rmwImpl = Ros2cs.GetRMWImplementation();
313
+
314
+ Debug.Log("ROS2 version: " + currentRos2Version + ". Build type: " + standalone + ". RMW: " + rmwImpl);
315
316
#if UNITY_EDITOR
317
EditorApplication.playModeStateChanged += this.EditorPlayStateChanged;
0 commit comments