Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
andyh2 committed Feb 11, 2020
1 parent 3409e16 commit 30f6805
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/manager.py
Expand Up @@ -266,8 +266,8 @@ def start_daemon_process(name):
cloudlog.info("starting daemon %s" % name)
proc = subprocess.Popen(['python', '-m', proc],
stdin=open('/dev/null', 'r'),
stdout=open('/dev/null', 'w'),
stderr=open('/dev/null', 'w'),
stdout=sys.stdout,
stderr=sys.stderr,
preexec_fn=os.setpgrp)

params.put(pid_param, str(proc.pid))
Expand Down

0 comments on commit 30f6805

Please sign in to comment.