From: Arnaud Giersch Date: Tue, 25 Jan 2011 12:01:56 +0000 (+0100) Subject: Use debug log level in loba_fairstrategy. X-Git-Tag: v0.1~188^2~9 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/d772022386ea3878a949578f097b23571e241b75?ds=sidebyside Use debug log level in loba_fairstrategy. --- diff --git a/loba_fairstrategy.cpp b/loba_fairstrategy.cpp index 9942fac..c372f74 100644 --- a/loba_fairstrategy.cpp +++ b/loba_fairstrategy.cpp @@ -21,7 +21,7 @@ double loba_fairstrategy::load_balance(double my_load) { std::sort(pneigh.begin(), pneigh.end(), compare()); - print_loads_p(); + print_loads_p(false, xbt_log_priority_debug); double sum_sent = 0; bool found = true; @@ -33,7 +33,7 @@ double loba_fairstrategy::load_balance(double my_load) found = true; pneigh[i]->add_load(1); pneigh[i]->add_to_send(1); - INFO1("sent to %s", pneigh[i]->get_name()); + DEBUG1("sent to %s", pneigh[i]->get_name()); my_load--; sum_sent++; }