Skip to content

Commit 4f66981

Browse files
wrpashb
authored andcommitted
[AIRFLOW-3090] Demote dag start/stop log messages to debug (#3920)
1 parent 6b18598 commit 4f66981

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airflow/utils/dag_processing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def heartbeat(self):
487487

488488
for file_path, processor in self._processors.items():
489489
if processor.done:
490-
self.log.info("Processor for %s finished", file_path)
490+
self.log.debug("Processor for %s finished", file_path)
491491
now = timezone.utcnow()
492492
finished_processors[file_path] = processor
493493
self._last_runtime[file_path] = (now -
@@ -560,7 +560,7 @@ def heartbeat(self):
560560
processor = self._processor_factory(file_path)
561561

562562
processor.start()
563-
self.log.info(
563+
self.log.debug(
564564
"Started a process (PID: %s) to generate tasks for %s",
565565
processor.pid, file_path
566566
)

0 commit comments

Comments
 (0)