From d887f544946d88a4537846a8b6d04c0c75a74052 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 24 Jun 2012 10:38:02 -0400 Subject: [PATCH] Document -debugnet option in command line help. Fixes #1507 --- src/init.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index b148c5008..076ea1d1c 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -256,7 +256,8 @@ std::string HelpMessage() " -daemon " + _("Run in the background as a daemon and accept commands") + "\n" + #endif " -testnet " + _("Use the test network") + "\n" + - " -debug " + _("Output extra debugging information") + "\n" + + " -debug " + _("Output extra debugging information. Implies all other -debug* options") + "\n" + + " -debugnet " + _("Output extra network debugging information") + "\n" + " -logtimestamps " + _("Prepend debug output with timestamp") + "\n" + " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n" + #ifdef WIN32