From 928d94265b3cfc06a2a98fa1d5123e752606bd02 Mon Sep 17 00:00:00 2001 From: Alena Prokharchyk Date: Wed, 19 Jun 2013 10:53:15 -0700 Subject: [PATCH] Added more logging to the place where VR investigates whether the user vm is alive, by executing PingCommand --- server/src/com/cloud/ha/UserVmDomRInvestigator.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/com/cloud/ha/UserVmDomRInvestigator.java b/server/src/com/cloud/ha/UserVmDomRInvestigator.java index f785d183938..8b48c09dfa1 100644 --- a/server/src/com/cloud/ha/UserVmDomRInvestigator.java +++ b/server/src/com/cloud/ha/UserVmDomRInvestigator.java @@ -182,7 +182,8 @@ public class UserVmDomRInvestigator extends AbstractInvestigatorImpl { Answer pingTestAnswer = _agentMgr.easySend(hostId, new PingTestCommand(routerPrivateIp, privateIp)); if (pingTestAnswer!=null && pingTestAnswer.getResult()) { if (s_logger.isDebugEnabled()) { - s_logger.debug("user vm " + vm.getHostName() + " has been successfully pinged, returning that it is alive"); + s_logger.debug("user vm's " + vm.getHostName() + " ip address "+ privateIp + " has been successfully pinged from the Virtual Router " + + router.getHostName() + ", returning that vm is alive"); } return Boolean.TRUE; }