From 6a0f3d0bc54cea79d5babe6e9688e8e6480e0fd1 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Thu, 4 Feb 2021 11:02:36 +0100 Subject: [PATCH] common_helper: remove newline --- lib/include/srslte/common/common_helper.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/include/srslte/common/common_helper.h b/lib/include/srslte/common/common_helper.h index f915a38bc..efd619f1f 100644 --- a/lib/include/srslte/common/common_helper.h +++ b/lib/include/srslte/common/common_helper.h @@ -32,7 +32,6 @@ inline void log_args(int argc, char* argv[], const std::string& service) for (int32_t i = 1; i < argc; i++) { s1 << argv[i] << " "; } - s1 << std::endl; srslog::fetch_basic_logger(service, false).set_level(srslog::basic_levels::info); srslog::fetch_basic_logger(service).info("%s", s1.str().c_str());