From ae05ec95b9ef9fa936b4e73e2a460edcaf26e195 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Mon, 2 May 2022 13:39:51 +0100 Subject: [PATCH] enb,config: revert print to console. When a full section was missing the print did not look good. --- srsenb/src/parser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/parser.cc b/srsenb/src/parser.cc index d72dd3043..ab593c564 100644 --- a/srsenb/src/parser.cc +++ b/srsenb/src/parser.cc @@ -109,7 +109,7 @@ int parser::section::parse(Setting& root) *enabled_value = false; return 0; } else { - std::cerr << "Error in section " << name.c_str() << ". " << ex.getPath() << " not found." << std::endl; + std::cerr << "Error section " << name.c_str() << " not found." << std::endl; return -1; } }