From f0138d45feda9f058b1827e77174d6a8994cd673 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 4 Jan 2021 21:03:21 +0100 Subject: [PATCH] srsenb,phy: fix setting of PHY log level same regression that was fixed for the UE in 52da9eb46fa153bc6dea4b4c233e548e9e74d09f --- srsenb/src/phy/phy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/phy/phy.cc b/srsenb/src/phy/phy.cc index 9f1e60170..c521f407e 100644 --- a/srsenb/src/phy/phy.cc +++ b/srsenb/src/phy/phy.cc @@ -112,7 +112,7 @@ int phy::init(const phy_args_t& args, { log_h = std::unique_ptr(new srslte::log_filter); log_h->init("PHY", logger, true); - log_h->set_level(args.log.phy_lib_level); + log_h->set_level(args.log.phy_level); log_h->set_hex_limit(args.log.phy_hex_limit); }