update text post logging fix

This commit is contained in:
pentarctagon 2024-02-27 10:41:53 -06:00
parent 4ed1d509dc
commit b853e9e10c
2 changed files with 2 additions and 2 deletions

View file

@ -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.
.TP
.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
.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.

View file

@ -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-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.")
("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.")
;