From 0d2b3eb55d5df9636968b0b0ed2bbf793ecf2862 Mon Sep 17 00:00:00 2001 From: Xavier Arteaga Date: Wed, 6 May 2020 11:19:13 +0200 Subject: [PATCH] Removed ue_phy_test log overload --- srsue/test/phy/CMakeLists.txt | 1 - srsue/test/phy/ue_phy_test.cc | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/srsue/test/phy/CMakeLists.txt b/srsue/test/phy/CMakeLists.txt index f62c6f916..f0e421b02 100644 --- a/srsue/test/phy/CMakeLists.txt +++ b/srsue/test/phy/CMakeLists.txt @@ -40,7 +40,6 @@ target_link_libraries(ue_phy_test srslte_phy srslte_radio srslte_upper - rrc_asn1 ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) add_test(ue_phy_test ue_phy_test) diff --git a/srsue/test/phy/ue_phy_test.cc b/srsue/test/phy/ue_phy_test.cc index 74426d50d..25f517337 100644 --- a/srsue/test/phy/ue_phy_test.cc +++ b/srsue/test/phy/ue_phy_test.cc @@ -42,7 +42,7 @@ public: expired = (cvar.wait_until(lock, expire_time) == std::cv_status::timeout); \ } \ if (expired) { \ - log_h.info("Expired " #NAME " waiting\n"); \ + log_h.debug("Expired " #NAME " waiting\n"); \ } \ return received_##NAME; \ } \ @@ -54,7 +54,7 @@ private: { \ std::unique_lock lock(mutex); \ cvar.notify_all(); \ - log_h.info(#NAME " received\n"); \ + log_h.debug(#NAME " received\n"); \ received_##NAME = true; \ } @@ -111,7 +111,7 @@ private: void run_tti(const uint32_t tti, const uint32_t tti_jump) override { notify_run_tti(); - log_h.info("Run TTI %d\n", tti); + log_h.debug("Run TTI %d\n", tti); } };