diff --git a/changes/582.fixed b/changes/582.fixed new file mode 100644 index 000000000..11657b0c5 --- /dev/null +++ b/changes/582.fixed @@ -0,0 +1 @@ +Fixed erroneous print statement in sync logs. diff --git a/nautobot_ssot/jobs/base.py b/nautobot_ssot/jobs/base.py index 972f8952d..a2d775cf4 100644 --- a/nautobot_ssot/jobs/base.py +++ b/nautobot_ssot/jobs/base.py @@ -193,7 +193,6 @@ def record_memory_trace(step: str): self.logger.info("As `dryrun` is set, skipping the actual data sync.") else: self.logger.info("Syncing from %s to %s...", self.source_adapter, self.target_adapter) - print("I'm executing the sync now") self.execute_sync() execute_sync_time = datetime.now() self.sync.sync_time = execute_sync_time - calculate_diff_time