Do not recreate logger after Task was closed/exited

This commit is contained in:
allegroai 2020-04-09 12:59:00 +03:00
parent 3f6fb5379a
commit 7f00e45d6c

View File

@ -1213,6 +1213,11 @@ class Task(_Task):
:return: Logger object
"""
# do not recreate logger after task was closed/quit
if self._at_exit_called:
return None
if not self._logger:
# force update of base logger to this current task (this is the main logger task)
self._setup_log(replace_existing=self.is_main_task())