-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add log_level #62
Add log_level #62
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
log_level
周りはよくかけています
他のlaunchファイルにもお願いします 🙏 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
かなり良さそう
一回ruff format
とruff check --fix
をお願いします
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙏
ul/launch/double_camera.py
Outdated
camera0 = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
PathJoinSubstitution( | ||
[FindPackageShare("camera_reader"), "launch", "camera_reader_launch.py"] | ||
) | ||
), | ||
launch_arguments=[("index", "0")], | ||
launch_arguments=[("index", "0"), ("log_level", log_level)], | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
やっぱりこれだけだと通りません
launch_configurations
を設定する必要があります、記述例↓
launch_configurations={"param_file": power_map_param_file}, |
他のIncludeLaunchDescription
を使っているところもこれをやる必要があるんですが、GroupAction
の引数に設定する必要があるので気をつけてください
遅くなってしまってすみません |
No description provided.