Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalzauberzeug committed Sep 26, 2024
1 parent 0d59821 commit 01d267f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion field_friend/automations/navigation/field_navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def create_simulation(self, crop_distance: float = 0.5) -> None:
start = cartesian[0]
end = cartesian[-1]
length = start.distance(end)
self.log.info(f'Adding plants from {start} to {end} (length {length:.1f} m)')
# self.log.info(f'Adding plants from {start} to {end} (length {length:.1f} m)')
crop_count = length / crop_distance
for i in range(int(crop_count)):
p = start.interpolate(end, (crop_distance * i) / length)
Expand Down

0 comments on commit 01d267f

Please sign in to comment.