Forcing calls to quit immediately rather than giving time to cancel to fix issues...
[theonering] / src / channel / text.py
index c3df7d2..5212cd7 100644 (file)
@@ -72,7 +72,7 @@ class TextChannel(tp.ChannelTypeText):
                                {},
                        )
                except Exception:
-                       _moduleLogger.exception(result)
+                       _moduleLogger.exception("Oh no, what happened?")
                        return
 
                self._conn.session.textsStateMachine.reset_timers()
@@ -129,7 +129,7 @@ class TextChannel(tp.ChannelTypeText):
                newConversations = list(newConversations)
                postSelfLen = len(newConversations)
                if postSelfLen < postUpdateLen:
-                       self._conn.log_to_user(__name__, "Dropped %s messages due to being from self" % (postUpdateLen - postSelfLen))
+                       _moduleLogger.info("Dropped %s messages due to being from self" % (postUpdateLen - postSelfLen))
                if not newConversations:
                        _moduleLogger.debug(
                                "New messages for %r are from yourself" % (self._contactKey, )
@@ -139,8 +139,8 @@ class TextChannel(tp.ChannelTypeText):
                newConversations = gvoice.conversations.filter_out_read(newConversations)
                newConversations = list(newConversations)
                postReadLen = len(newConversations)
-               if postReadLen < postReportedLen:
-                       self._conn.log_to_user(__name__, "Dropped %s messages due to already being read" % (postReportedLen - postReadLen))
+               if postReadLen < postSelfLen:
+                       _moduleLogger.info("Dropped %s messages due to already being read" % (postSelfLen- postReadLen))
                if not newConversations:
                        _moduleLogger.debug(
                                "New messages for %r have already been read externally" % (self._contactKey, )