Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.co.uk>2010-09-17 16:20:44 (GMT)
committer Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>2010-09-17 16:20:44 (GMT)
commit60515f3794eafed935033f102097c2cd2a1fb31d (patch)
tree091ea0033659c9854382c5802016c861528cadf0
parent9a0b3b51888f4ddfe834bd093b6147b3ea1bd7ec (diff)
Reduce a bit the verbosity of collaboration logging messages
-rw-r--r--src/jarabe/desktop/meshbox.py1
-rw-r--r--src/jarabe/model/neighborhood.py9
2 files changed, 3 insertions, 7 deletions
diff --git a/src/jarabe/desktop/meshbox.py b/src/jarabe/desktop/meshbox.py
index cf72053..036f00a 100644
--- a/src/jarabe/desktop/meshbox.py
+++ b/src/jarabe/desktop/meshbox.py
@@ -472,7 +472,6 @@ class MeshBox(gtk.VBox):
self._remove_activity(activity_model)
def _add_buddy(self, buddy_model):
- logging.debug('MeshBox._add_buddy %r', buddy_model.props.key)
buddy_model.connect('notify::current-activity',
self.__buddy_notify_current_activity_cb)
if buddy_model.props.current_activity is not None:
diff --git a/src/jarabe/model/neighborhood.py b/src/jarabe/model/neighborhood.py
index 6f73bfe..b808e12 100644
--- a/src/jarabe/model/neighborhood.py
+++ b/src/jarabe/model/neighborhood.py
@@ -391,8 +391,7 @@ class _Account(gobject.GObject):
self.emit('buddy-removed', handle)
def __buddy_info_updated_cb(self, handle, properties):
- logging.debug('_Account.__buddy_info_updated_cb %r %r', handle,
- properties)
+ logging.debug('_Account.__buddy_info_updated_cb %r', handle)
self.emit('buddy-updated', self._buddy_handles[handle], properties)
def __current_activity_changed_cb(self, contact_handle, activity_id,
@@ -413,8 +412,6 @@ class _Account(gobject.GObject):
self.emit('current-activity-updated', contact_id, activity_id)
def __buddy_activities_changed_cb(self, buddy_handle, activities):
- logging.debug('_Account.__buddy_activities_changed_cb %r %r',
- buddy_handle, activities)
self._update_buddy_activities(buddy_handle, activities)
def _update_buddy_activities(self, buddy_handle, activities):
@@ -537,7 +534,7 @@ class _Account(gobject.GObject):
'Contacts.GetContactAttributes'))
def __got_buddy_info_cb(self, handle, nick, properties):
- logging.debug('_Account.__got_buddy_info_cb %r', properties)
+ logging.debug('_Account.__got_buddy_info_cb %r', handle)
self.emit('buddy-added', self._buddy_handles[handle], nick,
properties.get('key', None), handle)
self.emit('buddy-updated', self._buddy_handles[handle], properties)
@@ -831,7 +828,7 @@ class Neighborhood(gobject.GObject):
self.emit('buddy-added', buddy)
def __buddy_updated_cb(self, account, contact_id, properties):
- logging.debug('__buddy_updated_cb %r %r', contact_id, properties)
+ logging.debug('__buddy_updated_cb %r', contact_id)
if contact_id not in self._buddies:
logging.debug('__buddy_updated_cb Unknown buddy with contact_id %r',
contact_id)