Commit 72617395 authored by Max Kellermann's avatar Max Kellermann

cmdline: renamed option "--stdout" to "--stderr"

Since version 0.14, MPD has been logging to standard error instead of standard output. The option name should reflect that. The old option continues to work, we will remove it in a future MPD release.
parent 62f9df98
......@@ -20,6 +20,7 @@ ver 0.16 (20??/??/??)
- added new "status" line with more precise "elapsed time"
* log unused/unknown block parameters
* save state when stopped
* renamed option "--stdout" to "--stderr"
ver 0.15 (2009/06/23)
......
......@@ -34,8 +34,8 @@ Do not create database, even if it doesn't exist.
.BI --no-daemon
Don't detach from console.
.TP
.BI --stdout
Print messages to stdout and stderr.
.BI --stderr
Print messages stderr.
.TP
.BI --verbose
Verbose logging.
......
......@@ -97,6 +97,8 @@ void parse_cmdline(int argc, char **argv, struct options *options)
{ "no-daemon", 0, 0, G_OPTION_ARG_NONE, &option_no_daemon,
"don't detach from console", NULL },
{ "stdout", 0, 0, G_OPTION_ARG_NONE, &options->stderr,
NULL, NULL },
{ "stderr", 0, 0, G_OPTION_ARG_NONE, &options->stderr,
"print messages to stderr", NULL },
{ "verbose", 'v', 0, G_OPTION_ARG_NONE, &options->verbose,
"verbose logging", NULL },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment