This PR:
- silents printing of the
-daemonoption forbitcoin-qt - prints the correct default value of the
-printtoconsoleoption forbitcoin-qt - prints the default value of the
-serveroption
On master (abdfd2d0e3ebec7dbead89317ee9192189a35809):
$ ./src/bitcoind -help # `bitcoin-qt -help' prints the same
...
-daemon
Run in the background as a daemon and accept commands
...
-printtoconsole
Send trace/debug info to console (default: 1 when no -daemon. To disable
logging to file, set -nodebuglogfile)
...
-server
Accept command line and JSON-RPC commands
With this PR:
$ ./src/bitcoind -help
...
-daemon
Run in the background as a daemon and accept commands
...
-printtoconsole
Send trace/debug info to console (default: 1). Disabled when -daemon=1.
To disable logging to file, set -nodebuglogfile
...
-server
Accept command line and JSON-RPC commands (default: 1)
$ ./src/qt/bitcoin-qt -help
...
-printtoconsole
Send trace/debug info to console (default: 0). To disable logging to
file, set -nodebuglogfile
...
-server
Accept command line and JSON-RPC commands (default: 0)