Skip to content

Commit

Permalink
Change error level to warning in lipas import 3D
Browse files Browse the repository at this point in the history
Change the error level from error to warning in lipas 3D import when
the unit is not saved due to a missing z coordinate.
  • Loading branch information
japauliina committed Aug 8, 2024
1 parent 737a765 commit ecf550a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/management/commands/lipas_import_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _save_geometries(self, geometries, units_by_lipas_id):
unit.geometry_3d = geometry
unit.save()
else:
logger.error(
logger.warning(
f"Failed to save unit {unit.name_fi} because of a missing z coordinate.",
)

Expand Down

0 comments on commit ecf550a

Please sign in to comment.