From 6553c1db54c52c5e660c97e20ebd878031eb1f46 Mon Sep 17 00:00:00 2001 From: Eric Cousineau Date: Tue, 22 Feb 2022 13:29:20 -0500 Subject: [PATCH] directory_watcher: Demote logger.info to .debug --- tensorboard/backend/event_processing/directory_watcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorboard/backend/event_processing/directory_watcher.py b/tensorboard/backend/event_processing/directory_watcher.py index 11c44c8fbd..2615e3259e 100644 --- a/tensorboard/backend/event_processing/directory_watcher.py +++ b/tensorboard/backend/event_processing/directory_watcher.py @@ -120,7 +120,7 @@ def _LoadInternal(self): next_path = self._GetNextPath() if not next_path: - logger.info("No path found after %s", self._path) + logger.debug("No path found after %s", self._path) # Current path is empty and there are no new paths, so we're done. return @@ -143,7 +143,7 @@ def _LoadInternal(self): for event in self._loader.Load(): yield event - logger.info( + logger.debug( "Directory watcher advancing from %s to %s", self._path, next_path,