Skip to content

Commit

Permalink
Host: Servers' standard output not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 2, 2013
1 parent e9a021d commit 1a441ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/host/doomsday-host
Expand Up @@ -242,8 +242,8 @@ class State:
#msg('PATH=' + os.getenv('PATH'))
#msg('HOME=' + os.getenv('HOME'))
#msg('Start options: ' + string.join(args, ' '))
outfile = file(os.path.join(sv.runtime, 'stdout-%s.log' % timestamp), 'wt')
po = subprocess.Popen(args, stdout=outfile, stderr=outfile)
#outfile = file(os.path.join(sv.runtime, 'stdout-%s.log' % timestamp), 'wt')
po = subprocess.Popen(args) #, stdout=outfile, stderr=outfile)
pid = po.pid
time.sleep(3)
if po.poll() is not None:
Expand Down

0 comments on commit 1a441ef

Please sign in to comment.