X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/00e9c7c4aa9f01d944398d68a05225c7782eb089..8da825f95900484f657c27e30eafe4aacbba3af5:/process.cpp diff --git a/process.cpp b/process.cpp index e5ba3cd..92b75c9 100644 --- a/process.cpp +++ b/process.cpp @@ -82,6 +82,8 @@ process::~process() { delete compute_thread; total_load_exit += real_load; + if (opt::log_rate < 0) + return; if (opt::bookkeeping) { XBT_INFO("Final load after %d:%d iterations: %g ; expected: %g", lb_iter, comp_iter, real_load, expected_load); @@ -94,7 +96,8 @@ process::~process() int process::run() { - XBT_INFO("Initial load: %g", real_load); + if (opt::log_rate >= 0) + XBT_INFO("Initial load: %g", real_load); XBT_VERB("Starting..."); compute_thread->start(); load_balance_loop();