Skip to content

Commit 2d85da6

Browse files
gnb: clarify help string for hex dump size
1 parent 0dcb2e5 commit 2d85da6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/gnb/gnb_appconfig_cli11_schema.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ static void configure_cli11_log_args(CLI::App& app, log_appconfig& log_params)
4444
app.add_option("--du_level", log_params.du_level, "Log level for the DU")->capture_default_str()->check(level_check);
4545
app.add_option("--cu_level", log_params.cu_level, "Log level for the CU")->capture_default_str()->check(level_check);
4646
app.add_option("--lib_level", log_params.lib_level, "Generic log level")->capture_default_str()->check(level_check);
47-
app.add_option("--hex_max_size", log_params.hex_max_size, "Maximum number of bytes to print in hex")
47+
app.add_option(
48+
"--hex_max_size", log_params.hex_max_size, "Maximum number of bytes to print in hex (zero for no hex dumps)")
4849
->capture_default_str()
4950
->check(CLI::Range(0, 1024));
5051
app.add_option("--broadcast_enabled",

0 commit comments

Comments
 (0)