!14576 [MD] Fix logger info in __del__ error

From: @xiefangqi
Reviewed-by: @liucunwei,@heleiwang
Signed-off-by: @liucunwei
This commit is contained in:
mindspore-ci-bot 2021-04-02 14:20:22 +08:00 committed by Gitee
commit 37aed65cac
1 changed files with 0 additions and 1 deletions

View File

@ -98,7 +98,6 @@ class Iterator:
""" """
Manually terminate Python iterator instead of relying on out of scope destruction. Manually terminate Python iterator instead of relying on out of scope destruction.
""" """
logger.info("Terminating Python iterator. This will also terminate C++ pipeline.")
if hasattr(self, '_runtime_context') and self._runtime_context: if hasattr(self, '_runtime_context') and self._runtime_context:
if hasattr(self, '_iterator') and self._iterator: if hasattr(self, '_iterator') and self._iterator:
self._runtime_context.Terminate() self._runtime_context.Terminate()