From adba585f57bc67c3d8422b2f061c8edd3feb3095 Mon Sep 17 00:00:00 2001 From: BogGyver Date: Wed, 8 Apr 2020 00:59:22 -0400 Subject: [PATCH] enable tracking of process status on terminal --- selfdrive/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/manager.py b/selfdrive/manager.py index e2b7875d105187..74ae49e661d240 100755 --- a/selfdrive/manager.py +++ b/selfdrive/manager.py @@ -506,7 +506,7 @@ def manager_thread(): # check the status of all processes, did any of them die? running_list = ["%s%s\u001b[0m" % ("\u001b[32m" if running[p].is_alive() else "\u001b[31m", p) for p in running] - #cloudlog.debug(' '.join(running_list)) + cloudlog.debug(' '.join(running_list)) # Exit main loop when uninstall is needed if params.get("DoUninstall", encoding='utf8') == "1":