From 0936cee67e577f49badcf316adfa1657080a72a7 Mon Sep 17 00:00:00 2001 From: Alex Lin Date: Tue, 20 Feb 2018 09:56:14 -0600 Subject: [PATCH] Separate verbosity levels for Monte Carlo dispatches and parametrizations #548 Changed verbosity check from INFORMATIONAL to ALL as requested. --- .../MonteCarlo/MonteCarlo_dispatch_run_to_slave.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trick_source/sim_services/MonteCarlo/MonteCarlo_dispatch_run_to_slave.cpp b/trick_source/sim_services/MonteCarlo/MonteCarlo_dispatch_run_to_slave.cpp index de6e421e..5132ab82 100644 --- a/trick_source/sim_services/MonteCarlo/MonteCarlo_dispatch_run_to_slave.cpp +++ b/trick_source/sim_services/MonteCarlo/MonteCarlo_dispatch_run_to_slave.cpp @@ -40,7 +40,7 @@ void Trick::MonteCarlo::dispatch_run_to_slave(MonteRun *run, MonteSlave *slave) tc_write(&connection_device, (char*)&num_bytes, (int)sizeof(num_bytes)); tc_write(&connection_device, (char*)buffer.c_str(), (int)buffer.length()); - if (verbosity >= INFORMATIONAL) { + if (verbosity >= ALL) { message_publish(MSG_INFO, "Parameterization of run %d :\n%s\n", run->id, buffer.c_str()) ; }