Use debug/warning instead of info log level in components [t] (#126147)

This commit is contained in:
Jan-Philipp Benecke
2024-09-18 12:39:50 +02:00
committed by GitHub
parent adf25b427b
commit 39e720caed
18 changed files with 20 additions and 20 deletions

View File

@ -330,7 +330,7 @@ class TensorFlowImageProcessor(ImageProcessingEntity):
)
for path in paths:
_LOGGER.info("Saving results image to %s", path)
_LOGGER.debug("Saving results image to %s", path)
os.makedirs(os.path.dirname(path), exist_ok=True)
img.save(path)