CLOUDSTACK-7219 log warning when config item is missing from scope

This commit is contained in:
Daan Hoogland 2014-10-02 11:58:20 +02:00
parent 08b9a96b7c
commit 63fbd16dd1
1 changed files with 2 additions and 0 deletions

View File

@ -1706,6 +1706,8 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe
if (configVo != null) {
configVo.setValue(_configDepot.get(param.getName()).valueIn(id).toString());
configVOList.add(configVo);
} else {
s_logger.warn("configuration item " + param.getName() + " not found in " + scope);
}
}