From 28481fe957e790b5b0978f22cf3c076d81863d06 Mon Sep 17 00:00:00 2001 From: Nikos Karastathis <n.karastathis@kit.edu> Date: Tue, 8 Mar 2022 10:07:02 +0100 Subject: [PATCH] use corsika_log instead of std::cout in testRadio --- tests/modules/testRadio.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/modules/testRadio.cpp b/tests/modules/testRadio.cpp index 9d38dbdbc..1b9693029 100644 --- a/tests/modules/testRadio.cpp +++ b/tests/modules/testRadio.cpp @@ -360,7 +360,8 @@ TEST_CASE("Radio", "[processes]") { // this prints out the antenna names and locations for (auto const antenna : detector__.getAntennas()) { - std::cout << antenna.getName() << " --++-- " << antenna.getLocation() << std::endl; + CORSIKA_LOG_DEBUG("Antenna name: {} ", antenna.getName()); + CORSIKA_LOG_DEBUG("Antenna location: {} ", antenna.getLocation()); } } // END: SECTION("TimeDomainAntenna") -- GitLab