Skip to content

Commit

Permalink
update help text
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Aug 29, 2024
1 parent dea629e commit 341816d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ int main(int argc, char** argv) {
app.add_flag("--read-only", readOnly, "Read-only mode")
->group("General");
app.add_flag("--shared-buffer", sharedBuffer, "Store event data in a shared memory buffer")->group("General");
app.add_option("--root-compression-algorithm", root_compression_algorithm, "Root compression algorithm (default: LZMA)")
app.add_option("--root-compression-algorithm", root_compression_algorithm, "Root compression algorithm. Use LZMA (default) for best compression or LZ4 for speed when the event rate very high")
->group("File Options")
->check(CLI::IsMember({"ZLIB", "LZMA", "LZ4"}));
app.add_flag("--version", version_flag, "Print the version");
Expand Down

0 comments on commit 341816d

Please sign in to comment.