From aca307b79b09ac0d742ba8e387d86dc7df8a657c Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Thu, 18 Jun 2020 12:13:34 +0200 Subject: [PATCH] ue,rrc: don't log neighbor list in info mode this floods the info log --- srsue/src/stack/rrc/rrc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srsue/src/stack/rrc/rrc.cc b/srsue/src/stack/rrc/rrc.cc index d72e4c442..0a7dac100 100644 --- a/srsue/src/stack/rrc/rrc.cc +++ b/srsue/src/stack/rrc/rrc.cc @@ -604,9 +604,9 @@ void rrc::log_neighbour_cells() } } } - rrc_log->info("Neighbours: %s]\n", ordered); + rrc_log->debug("Neighbours: %s]\n", ordered); } else { - rrc_log->info("Neighbours: Empty\n"); + rrc_log->debug("Neighbours: Empty\n"); } }