From b25115b359043d420e11becd7bf2095da0636af3 Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Tue, 21 May 2024 15:48:17 -0500 Subject: [PATCH] =?UTF-8?q?docs:=20=F0=9F=93=9D=20Update=20logger=20settin?= =?UTF-8?q?g=20to=20use=20full=20setting=20name.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../integrations/dna_center/diffsync/models/nautobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_ssot/integrations/dna_center/diffsync/models/nautobot.py b/nautobot_ssot/integrations/dna_center/diffsync/models/nautobot.py index b1923a145..671ef9274 100644 --- a/nautobot_ssot/integrations/dna_center/diffsync/models/nautobot.py +++ b/nautobot_ssot/integrations/dna_center/diffsync/models/nautobot.py @@ -96,7 +96,7 @@ def update(self, attrs): """Update Site in Nautobot from Building object.""" if not settings.PLUGINS_CONFIG["nautobot_ssot"].get("dna_center_update_locations"): self.adapter.job.logger.warning( - f"`update_locations` setting is disabled so will skip updating {self.name}." + f"`dna_center_update_locations` setting is disabled so will skip updating {self.name}." ) return super().update(attrs) site = Location.objects.get(id=self.uuid)