From 3d29bfd79c15e5a392767fe6a9dfbe8bfedd08b1 Mon Sep 17 00:00:00 2001 From: Fabien Chaix Date: Tue, 17 May 2022 13:44:06 +0300 Subject: [PATCH] Decrease verbosity when test pass --- teshsuite/s4u/comm-fault-scenarios/comm-fault-scenarios.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teshsuite/s4u/comm-fault-scenarios/comm-fault-scenarios.cpp b/teshsuite/s4u/comm-fault-scenarios/comm-fault-scenarios.cpp index 968eb041a2..6be8fb945f 100644 --- a/teshsuite/s4u/comm-fault-scenarios/comm-fault-scenarios.cpp +++ b/teshsuite/s4u/comm-fault-scenarios/comm-fault-scenarios.cpp @@ -266,7 +266,7 @@ class SendAgent { if (outcome != expected) { XBT_ERROR("Expected %s but got %s in %s", to_string(expected), to_string(outcome), scenario_string.c_str()); } else { - XBT_INFO("OK: %s", scenario_string.c_str()); + XBT_DEBUG("OK: %s", scenario_string.c_str()); } sg4::this_actor::sleep_until(end_time); @@ -400,7 +400,7 @@ class ReceiveAgent { if (outcome != expected) { XBT_ERROR("Expected %s but got %s in %s", to_string(expected), to_string(outcome), scenario_string.c_str()); } else { - XBT_INFO("OK: %s", scenario_string.c_str()); + XBT_DEBUG("OK: %s", scenario_string.c_str()); } sg4::this_actor::sleep_until(end_time); -- 2.20.1