update text post logging fix
This commit is contained in:
parent
4ed1d509dc
commit
b853e9e10c
2 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ if used) and exits
|
||||||
prevents redirecting logged output to a file. Log files are created in the logs directory under the userdata folder.
|
prevents redirecting logged output to a file. Log files are created in the logs directory under the userdata folder.
|
||||||
.TP
|
.TP
|
||||||
.B --log-to-file
|
.B --log-to-file
|
||||||
log output is written to a file in addition to standard output/error. Cancels the effect of --no-log-to-file whether implicit or explicit.
|
log output is written to a file. Cancels the effect of --no-log-to-file whether implicit or explicit.
|
||||||
.TP
|
.TP
|
||||||
.B --wnoconsole
|
.B --wnoconsole
|
||||||
For Windows, when used with --no-log-to-file, results in output being written to cerr/cout instead of CONOUT. Otherwise, does nothing.
|
For Windows, when used with --no-log-to-file, results in output being written to cerr/cout instead of CONOUT. Otherwise, does nothing.
|
||||||
|
|
|
@ -252,7 +252,7 @@ commandline_options::commandline_options(const std::vector<std::string>& args)
|
||||||
("log-none", po::value<std::vector<std::string>>()->composing(), "sets the severity level of the specified log domain(s) to 'none'. Similar to --log-error.")
|
("log-none", po::value<std::vector<std::string>>()->composing(), "sets the severity level of the specified log domain(s) to 'none'. Similar to --log-error.")
|
||||||
("log-precise", "shows the timestamps in log output with more precision.")
|
("log-precise", "shows the timestamps in log output with more precision.")
|
||||||
("no-log-to-file", "log output is written only to standard error rather than to a file.")
|
("no-log-to-file", "log output is written only to standard error rather than to a file.")
|
||||||
("log-to-file", "log output is written to a file in addition to standard output/error. Cancels the effect of --no-log-to-file whether implicit or explicit.")
|
("log-to-file", "log output is written to a file. Cancels the effect of --no-log-to-file whether implicit or explicit.")
|
||||||
("wnoconsole", "For Windows, when used with --no-log-to-file, results in output being written to cerr/cout instead of CONOUT. Otherwise, does nothing.")
|
("wnoconsole", "For Windows, when used with --no-log-to-file, results in output being written to cerr/cout instead of CONOUT. Otherwise, does nothing.")
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue