Logging
pathplannerlib Index / Pathplannerlib / Logging
Auto-generated documentation for pathplannerlib.logging module.
PathPlannerLogging
Signature
PathPlannerLogging.logActivePath
Log the active path. This is used internally.
Arguments
path
- The active path
Signature
PathPlannerLogging.logCurrentPose
Log the current robot pose. This is used internally.
Arguments
pose
- The current robot pose
Signature
PathPlannerLogging.logTargetPose
Log the target robot pose. This is used internally.
Arguments
pose
- The target robot pose
Signature
PathPlannerLogging.setLogActivePathCallback
Set the logging callback for the active path
Arguments
log_active_path
- Consumer that accepts the active path as a list of poses. Can be null to disable logging this value.
Signature
@staticmethod
def setLogActivePathCallback(
log_active_path: Callable[[List[Pose2d]], None],
) -> None: ...
PathPlannerLogging.setLogCurrentPoseCallback
Set the logging callback for the current robot pose
Arguments
log_current_pose
- Consumer that accepts the current robot pose. Can be null to disable logging this value.
Signature
@staticmethod
def setLogCurrentPoseCallback(log_current_pose: Callable[[Pose2d], None]) -> None: ...
PathPlannerLogging.setLogTargetPoseCallback
Set the logging callback for the target robot pose
Arguments
log_target_pose
- Consumer that accepts the target robot pose. Can be null to disable logging this value.