Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove a debug message, sorry
[simgrid.git] / 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);
   }
 }