From 1a68fbc4604ad3c5e5f4a0dc28b309cafb8587c8 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Tue, 24 Sep 2019 14:48:52 +0200 Subject: [PATCH] fix wrong setting for RF log level --- srsue/src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/main.cc b/srsue/src/main.cc index 1c8abcc40..5e0e355d3 100644 --- a/srsue/src/main.cc +++ b/srsue/src/main.cc @@ -431,7 +431,7 @@ static int parse_args(all_args_t* args, int argc, char* argv[]) // Apply all_level to any unset layers if (vm.count("log.all_level")) { - if (!vm.count("log.phy_level")) { + if (!vm.count("log.rf_level")) { args->rf.log_level = args->log.all_level; } if (!vm.count("log.phy_level")) {