You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by re...@apache.org on 2015/10/14 18:32:11 UTC

[7/9] git commit: updated refs/heads/master to 2ce5a0c

CLOUDSTACK-8947 - Adding some logging to better understand whay is happening with the Processes


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f35a16c1
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f35a16c1
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f35a16c1

Branch: refs/heads/master
Commit: f35a16c19e8d8c851a250a7d713b30ba58dbf5a0
Parents: 80b51a7
Author: Wilder Rodrigues <wr...@schubergphilis.com>
Authored: Tue Oct 13 15:59:14 2015 +0200
Committer: Wilder Rodrigues <wr...@schubergphilis.com>
Committed: Wed Oct 14 07:44:39 2015 +0200

----------------------------------------------------------------------
 systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f35a16c1/systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py
----------------------------------------------------------------------
diff --git a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py
index 19d030b..6155f30 100755
--- a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py
+++ b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py
@@ -46,6 +46,8 @@ class CsProcess(object):
             matches = len([m for m in proc if m in self.search])
             if matches == items:
                 self.pid.append(re.split("\s+", i)[1])
+
+        logging.debug("CsProcess:: Searching for process ==> %s and found PIDs ==> %s", self.search, self.pid)
         return self.pid
 
     def find(self):