Separate verbosity levels for Monte Carlo dispatches and parametrizations #548

Changed verbosity check from INFORMATIONAL to ALL as requested.
This commit is contained in:
Alex Lin 2018-02-20 09:56:14 -06:00
parent 2b241acc0f
commit 0936cee67e

View File

@ -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()) ;
}