Skip to content

Commit

Permalink
Mention that we are connecting/disconnecting a vSphere Agent while lo…
Browse files Browse the repository at this point in the history
…gging
  • Loading branch information
dnaeon committed Mar 29, 2014
1 parent fe493c8 commit 34a5bee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vpoller/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def connect(self):
VPollerException
"""
logging.info('Connecting to %s', self.host)
logging.info('Connecting vSphere Agent to %s', self.host)

try:
self.si = pyVim.connect.SmartConnect(
Expand All @@ -95,7 +95,7 @@ def disconnect(self):
Disconnect from the VMware vSphere host
"""
logging.info('Disconnecting from %s', self.host)
logging.info('Disconnecting vSphere Agent from %s', self.host)
pyVim.connect.Disconnect(self.si)

def reconnect(self):
Expand Down

0 comments on commit 34a5bee

Please sign in to comment.