]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Use debug log level in loba_fairstrategy.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 25 Jan 2011 12:01:56 +0000 (13:01 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 25 Jan 2011 12:26:17 +0000 (13:26 +0100)
loba_fairstrategy.cpp

index 9942fac1b1847616a9518788df811ceb2d38cb0e..c372f74da2a508d8ac3c7d677cd93242075e339e 100644 (file)
@@ -21,7 +21,7 @@ double loba_fairstrategy::load_balance(double my_load)
 {
     std::sort(pneigh.begin(), pneigh.end(), compare());
 
 {
     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;
 
     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);
                 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++;
             }
                 my_load--;
                 sum_sent++;
             }