From 3e98f489833f2c2a9a87576efc3627df4cd9bf78 Mon Sep 17 00:00:00 2001
From: David-Sarah Hopwood <david-sarah@jacaranda.org>
Date: Thu, 3 Jan 2013 18:54:04 +0000
Subject: [PATCH] startstop_node.py: improvements to comments.

Signed-off-by: David-Sarah Hopwood <david-sarah@jacaranda.org>
---
 src/allmydata/scripts/startstop_node.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/allmydata/scripts/startstop_node.py b/src/allmydata/scripts/startstop_node.py
index a0c69bb6..424b3289 100644
--- a/src/allmydata/scripts/startstop_node.py
+++ b/src/allmydata/scripts/startstop_node.py
@@ -147,7 +147,7 @@ def start(config, out=sys.stdout, err=sys.stderr):
         verb = "running"
     print >>out, "%s node in %s" % (verb, basedir)
     twistd.runApp(twistd_config)
-    # we should only reach here if --nodaemon was used
+    # we should only reach here if --nodaemon or equivalent was used
     return 0
 
 def stop(config, out=sys.stdout, err=sys.stderr):
@@ -219,7 +219,10 @@ def restart(config, stdout, stderr):
 
 def run(config, stdout, stderr):
     config.twistd_args = config.twistd_args + ("--nodaemon",)
-    # also ("--logfile", "tahoesvc.log")
+    # Previously we would do the equivalent of adding ("--logfile", "tahoesvc.log"),
+    # but that redirects stdout/stderr which is often unhelpful, and the user can
+    # add that option explicitly if they want.
+
     return start(config, stdout, stderr)
 
 
-- 
2.45.2