From 2d157c29ec1914ea5fefb9139780aaff28b9d191 Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Wed, 1 May 2024 16:19:16 +0200 Subject: [PATCH] supression d'un log inutile --- src/agenda_culturel/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/agenda_culturel/models.py b/src/agenda_culturel/models.py index 074aff1..3d0303b 100644 --- a/src/agenda_culturel/models.py +++ b/src/agenda_culturel/models.py @@ -463,7 +463,6 @@ class Event(models.Model): if not self.exact_location: for p in Place.objects.all(): if p.match(self): - logger.warning("Found a place for an imported event: " + p.name) self.exact_location = p break