8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--log.line-number
1 parent 31f123c commit 43869a0Copy full SHA for 43869a0
lib/Logger/LoggerFeature.cpp
@@ -195,7 +195,9 @@ void LoggerFeature::collectOptions(std::shared_ptr<ProgramOptions> options) {
195
new StringParameter(&_file),
196
arangodb::options::makeDefaultFlags(arangodb::options::Flags::Hidden));
197
198
- options->addOption("--log.line-number", "append line number and file name",
+ options->addOption("--log.line-number",
199
+ "include the function name, file name and line number of the source code "
200
+ "that issues the log message. Format: `[func@FileName.cpp:123]`",
201
new BooleanParameter(&_lineNumber),
202
203
0 commit comments