Removed ue_phy_test log overload

master
Xavier Arteaga 5 years ago committed by Xavier Arteaga
parent ac0e347d94
commit 0d2b3eb55d

@ -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)

@ -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<std::mutex> 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);
}
};

Loading…
Cancel
Save