Skip to content

Commit 7e0f111

Browse files
Update launch file to use output="both" (#369)
1 parent e1de840 commit 7e0f111

File tree

5 files changed

+5
-20
lines changed

5 files changed

+5
-20
lines changed

doc/examples/move_group_interface/launch/move_group.launch.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ def generate_launch_description():
6868
package="controller_manager",
6969
executable="ros2_control_node",
7070
parameters=[moveit_config.robot_description, ros2_controllers_path],
71-
output={
72-
"stdout": "screen",
73-
"stderr": "screen",
74-
},
71+
output="both",
7572
)
7673

7774
# Load controllers

doc/examples/moveit_cpp/launch/moveit_cpp_tutorial.launch.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,7 @@ def generate_launch_description():
7171
package="controller_manager",
7272
executable="ros2_control_node",
7373
parameters=[moveit_config.robot_description, ros2_controllers_path],
74-
output={
75-
"stdout": "screen",
76-
"stderr": "screen",
77-
},
74+
output="both",
7875
)
7976

8077
# Load controllers

doc/examples/persistent_scenes_and_states/move_group.launch.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,7 @@ def generate_launch_description():
9595
package="controller_manager",
9696
executable="ros2_control_node",
9797
parameters=[moveit_config.robot_description, ros2_controllers_path],
98-
output={
99-
"stdout": "screen",
100-
"stderr": "screen",
101-
},
98+
output="both",
10299
)
103100

104101
# Load controllers

doc/examples/realtime_servo/launch/servo_cpp_interface_demo.launch.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,7 @@ def generate_launch_description():
8282
"ros2_controllers.yaml",
8383
),
8484
],
85-
output={
86-
"stdout": "screen",
87-
"stderr": "screen",
88-
},
85+
output="both",
8986
)
9087

9188
# Load controllers

doc/tutorials/pick_and_place_with_moveit_task_constructor/launch/mtc_demo.launch.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,7 @@ def generate_launch_description():
7777
package="controller_manager",
7878
executable="ros2_control_node",
7979
parameters=[moveit_config.to_dict(), ros2_controllers_path],
80-
output={
81-
"stdout": "screen",
82-
"stderr": "screen",
83-
},
80+
output="both",
8481
)
8582

8683
# Load controllers

0 commit comments

Comments
 (0)