From 1cc0604ffca40bbfaee12c9fb5dc702fe921bb8c Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 25 Feb 2010 20:52:37 -0600 Subject: [PATCH 1/1] Reducing not-helpful traces --- src/connection.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/connection.py b/src/connection.py index 80518cc..fc62020 100644 --- a/src/connection.py +++ b/src/connection.py @@ -166,11 +166,9 @@ class TheOneRingConnection( def get_handle_by_name(self, handleType, handleName): requestedHandleName = handleName.encode('utf-8') if handleType == telepathy.HANDLE_TYPE_CONTACT: - _moduleLogger.debug("get_handle_by_name Contact: %s" % requestedHandleName) h = handle.create_handle(self, 'contact', requestedHandleName) elif handleType == telepathy.HANDLE_TYPE_LIST: # Support only server side (immutable) lists - _moduleLogger.debug("get_handle_by_name List: %s" % requestedHandleName) h = handle.create_handle(self, 'list', requestedHandleName) else: raise telepathy.errors.NotAvailable('Handle type unsupported %d' % handleType) -- 1.7.9.5