Browse Source

changed print to info

Joe Shochet 21 years ago
parent
commit
aff265b771
1 changed files with 1 additions and 2 deletions
  1. 1 2
      direct/src/distributed/DistributedObject.py

+ 1 - 2
direct/src/distributed/DistributedObject.py

@@ -342,8 +342,7 @@ class DistributedObject(PandaObject):
             self.cr.addInterest(self.getDoId(), zoneId, note, event)
 
         def setLocation(self, parentId, zoneId):
-            #print "%s setLocation %s, %s" % (self.doId, parentId, zoneId)
-            
+            self.notify.info("setLocation: %s parentId: %s zoneId: %s" % (self.doId, parentId, zoneId))
             # The store must run first so we know the old location
             #self.cr.storeObjectLocation(self.doId, parentId, zoneId)
             self.__location = (parentId, zoneId)