Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove a debug message, sorry
authorMartin Quinson <martin.quinson@loria.fr>
Fri, 16 Jun 2017 06:31:33 +0000 (08:31 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Fri, 16 Jun 2017 06:31:48 +0000 (08:31 +0200)
src/surf/HostImpl.cpp

index b212a16..1978dbc 100644 (file)
@@ -35,7 +35,7 @@ void HostModel::ignoreEmptyVmInPmLMM()
     /* The impact of the VM over its PM is the min between its vCPU amount and the amount of tasks it contains */
     int impact = std::min(active_tasks, ws_vm->pimpl_vm_->coreAmount());
 
-    XBT_INFO("set the weight of the dummy CPU action of VM%p on PM to %d (#tasks: %d)", ws_vm, impact, active_tasks);
+    XBT_DEBUG("set the weight of the dummy CPU action of VM%p on PM to %d (#tasks: %d)", ws_vm, impact, active_tasks);
     ws_vm->pimpl_vm_->action_->setPriority(impact);
   }
 }