Open Dannihu01 opened 5 years ago
def autonomousInit(self): self.teleopInit() print(“auton init”)
def autonomousPeriodic(self): self.teleopPeriodic() print(“auton periodic”)
Replace the print statements with the logger.
In autonperiodic, call we probably want something like a "tick" counter used to throttle the logging. Maybe we just need about one every 50 ticks. (in auton init, initialize autonTickCounter = 0).
def autonomousInit(self): self.teleopInit() print(“auton init”)
def autonomousPeriodic(self): self.teleopPeriodic() print(“auton periodic”)
Replace the print statements with the logger.