bug 10972: Improve logging - put in the hostid and hostname on which the vm launches.

status 10972: resolved fixed
This commit is contained in:
Nitin 2011-08-24 18:00:09 +05:30
parent 01044c5b2d
commit 4b6d072490
1 changed files with 1 additions and 1 deletions

2
server/src/com/cloud/deploy/FirstFitPlanner.java Normal file → Executable file
View File

@ -502,7 +502,7 @@ public class FirstFitPlanner extends PlannerBase implements DeploymentPlanner {
}
}
if(hostCanAccessPool){
s_logger.debug("Found a potential host and associated storage pools for this VM");
s_logger.debug("Found a potential host " + "id: "+potentialHost.getId() + " name: " +potentialHost.getName()+ " and associated storage pools for this VM");
return new Pair<Host, Map<Volume, StoragePool>>(potentialHost, storage);
}
}