Fix typos and add component name to disconnect log
diff --git a/TestON/core/teston.py b/TestON/core/teston.py
index 4ab6e86..961e824 100644
--- a/TestON/core/teston.py
+++ b/TestON/core/teston.py
@@ -294,7 +294,8 @@
         for component in self.componentDictionary.keys():
             try :
                 tempObject  = vars(self)[component]
-                print "Disconnecting " + str(tempObject)
+                print "Disconnecting from " + str(tempObject.name) + ": " + \
+                      str(tempObject)
                 tempObject.disconnect()
             #tempObject.execute(cmd="exit",prompt="(.*)",timeout=120)