1
0
Fork 0

Doc - Added "log-output" example (#10223)

This commit is contained in:
Simran 2019-10-11 16:37:07 +02:00 committed by KVS85
parent 4c6ab4d502
commit 56561b3854
1 changed files with 3 additions and 1 deletions

View File

@ -85,7 +85,9 @@ void LoggerFeature::collectOptions(std::shared_ptr<ProgramOptions> options) {
options->addOption("--log.escape", "escape characters when logging",
new BooleanParameter(&_useEscaped));
options->addOption("--log.output,-o", "log destination(s)",
options->addOption("--log.output,-o",
"log destination(s), e.g. file:///path/to/file (Linux, macOS) "
"or file://C:\\path\\to\\file (Windows)",
new VectorParameter<StringParameter>(&_output));
options->addOption("--log.level,-l", "the global or topic-specific log level",