From 7f00e45d6c2fd9c98c7c77aaaab63c647a9ee2e3 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Thu, 9 Apr 2020 12:59:00 +0300 Subject: [PATCH] Do not recreate logger after Task was closed/exited --- trains/task.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/trains/task.py b/trains/task.py index 16070bab..900e2ada 100644 --- a/trains/task.py +++ b/trains/task.py @@ -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())