From: Ed Page Date: Fri, 26 Feb 2010 02:52:37 +0000 (-0600) Subject: Reducing not-helpful traces X-Git-Url: http://git.maemo.org/git/?p=theonering;a=commitdiff_plain;h=1cc0604ffca40bbfaee12c9fb5dc702fe921bb8c Reducing not-helpful traces --- 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)