Changeset 3562 for branch/PacketManipulator/PM/Manager/PreferenceManager.py
- Timestamp:
- 08/19/08 11:54:40 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branch/PacketManipulator/PM/Manager/PreferenceManager.py
r3509 r3562 31 31 from xml.sax.xmlreader import AttributesNSImpl 32 32 33 from PM.Core.Logger import log 33 34 from PM.Core.Const import PM_HOME 34 35 from PM.Core.Atoms import Singleton … … 80 81 # Lock if a callback returns True 81 82 if cb(val): 82 print "set_value(): Ignoring change"83 log.debug("Ignoring change") 83 84 return 84 85 85 print "set_value(): %s = %s" % (self, val)86 log.debug("%s = %s" % (self, val)) 86 87 self._value = val 87 88
