In the RobotContainer class, I am running
public RobotContainer{
DrivetrainSubsystem.getInstance().setDefaultCommand(new DriveCommand);
}
In the DriveCommand class, I have
public DriveCommand() {
addRequirements(DrivetrianSubsystem.getInstance());
System.out.println((“a”);
}
It deploys to the robot and runs without any errors, yet nothing is printed to the console and the DriveCommand does not run. Does anyone know what could be the issue?