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):
 0$ ./src/bitcoind -help  # `bitcoin-qt -help' prints the same
 1...
 2  -daemon
 3       Run in the background as a daemon and accept commands
 4...
 5  -printtoconsole
 6       Send trace/debug info to console (default: 1 when no -daemon. To disable
 7       logging to file, set -nodebuglogfile)
 8...
 9  -server
10       Accept command line and JSON-RPC commands
With this PR:
 0$ ./src/bitcoind -help
 1...
 2  -daemon
 3       Run in the background as a daemon and accept commands
 4...
 5  -printtoconsole
 6       Send trace/debug info to console (default: 1). Disabled when -daemon=1.
 7       To disable logging to file, set -nodebuglogfile
 8...
 9  -server
10       Accept command line and JSON-RPC commands (default: 1)
11
12$ ./src/qt/bitcoin-qt -help
13...
14  -printtoconsole
15       Send trace/debug info to console (default: 0). To disable logging to
16       file, set -nodebuglogfile
17...
18  -server
19       Accept command line and JSON-RPC commands (default: 0)