Remove autopilot error messages

This commit is contained in:
nsubiron 2018-10-18 00:39:27 +02:00
parent 83f4ccad92
commit e08b4e6cfd
2 changed files with 0 additions and 2 deletions

View File

@ -107,7 +107,6 @@ void ACarlaVehicleController::IntersectPlayerWithRoadMap()
{
auto CurrentRoadMap = GetRoadMap();
if (CurrentRoadMap == nullptr) {
UE_LOG(LogCarla, Error, TEXT("Controller doesn't have a road map!"));
return;
}

View File

@ -186,7 +186,6 @@ void AWheeledVehicleAIController::TickAutopilotController()
check(Vehicle != nullptr);
if (RoadMap == nullptr) {
UE_LOG(LogCarla, Error, TEXT("Controller doesn't have a road map!"));
return;
}