Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/AbiWordActivity.py
diff options
context:
space:
mode:
authorMarc Maurer <uwog@uwog.net>2007-07-12 18:32:49 (GMT)
committer Marc Maurer <uwog@uwog.net>2007-07-12 18:32:49 (GMT)
commit2ae291ec40244a6e6316ddb338ac64bebad936e7 (patch)
tree5615a0b9c147ee4ec71faca56d4bb87afdfd3e36 /AbiWordActivity.py
parentc2f35da58de63194f16100fdc052710670a43cf3 (diff)
Fix debugging information
Diffstat (limited to 'AbiWordActivity.py')
-rw-r--r--AbiWordActivity.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/AbiWordActivity.py b/AbiWordActivity.py
index d207f12..764032b 100644
--- a/AbiWordActivity.py
+++ b/AbiWordActivity.py
@@ -98,7 +98,7 @@ class AbiWordActivity (Activity):
# always make sure at least 1 document is loaded (bad bad widget design)
if not self._file_opened:
- print "Loading empty doc"
+ logger.debug("Loading empty doc")
self.abiword_canvas.load_file('', '');
# activity sharing
@@ -114,7 +114,7 @@ class AbiWordActivity (Activity):
if self._shared_activity:
# we are joining the activity
- print "We are joining an activity"
+ logger.debug("We are joining an activity")
self.connect('joined', self._joined_cb)
self._shared_activity.connect('buddy-joined', self._buddy_joined_cb)
self._shared_activity.connect('buddy-left', self._buddy_left_cb)
@@ -123,7 +123,7 @@ class AbiWordActivity (Activity):
self._joined_cb()
else:
# we are creating the activity
- print "We are creating an activity"
+ logger.debug("We are creating an activity")
owner = pservice.get_owner()
@@ -221,12 +221,12 @@ class AbiWordActivity (Activity):
initiator_path = None;
contacts = self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].GetDBusNames(id)
- print 'dbus contact mapping',self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].GetDBusNames(id)
+ #print 'dbus contact mapping',self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].GetDBusNames(id)
for i, struct in enumerate(contacts):
- print 'mapping i',i
+ #print 'mapping i',i
handle, path = struct
if handle == initiator:
- print 'found initiator dbus path:',path
+ logger.debug('found initiator dbus path: %s', path)
initiator_path = path
break;
@@ -236,7 +236,7 @@ class AbiWordActivity (Activity):
# pass this tube to abicollab
address = self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].GetDBusServerAddress(id)
if self.joined:
- print 'Passing tube address to abicollab (join)', address
+ logger.debug('Passing tube address to abicollab (join)', address)
self.abiword_canvas.invoke_cmd('com.abisource.abiword.abicollab.olpc.joinTube', address, 0, 0)
if initiator_path is not None:
logger.debug('Adding the initiator to the session: %s', initiator_path)
@@ -266,7 +266,7 @@ class AbiWordActivity (Activity):
logger.debug('removed handle: %s, with dbus name: %s', handle, bus_name)
def _buddy_joined_cb (self, activity, buddy):
- print 'buddy joined with object path: %s',buddy.object_path()
+ logger.debug('buddy joined with object path: %s', buddy.object_path())
# self.abiword_canvas.invoke_cmd('com.abisource.abiword.abicollab.olpc.buddyJoined', buddy.object_path(), 0, 0)
def _buddy_left_cb (self, activity, buddy):