mirror of
https://github.com/markqvist/NomadNet.git
synced 2024-12-29 00:56:14 -05:00
Removed log statements
This commit is contained in:
parent
563cbbb6cd
commit
04a25339ae
@ -17,14 +17,10 @@ class Conversation:
|
|||||||
# Check if the announced destination is in
|
# Check if the announced destination is in
|
||||||
# our list of conversations
|
# our list of conversations
|
||||||
if destination_hash_text in [e[0] for e in Conversation.conversation_list(app)]:
|
if destination_hash_text in [e[0] for e in Conversation.conversation_list(app)]:
|
||||||
RNS.log("Announced LXMF destination is in our conversation list")
|
|
||||||
RNS.log("app_data = "+str(app_data))
|
|
||||||
if app.directory.find(destination_hash):
|
if app.directory.find(destination_hash):
|
||||||
RNS.log("It is also in the directory")
|
|
||||||
if Conversation.created_callback != None:
|
if Conversation.created_callback != None:
|
||||||
Conversation.created_callback()
|
Conversation.created_callback()
|
||||||
else:
|
else:
|
||||||
RNS.log("But it is not in the directory")
|
|
||||||
if Conversation.created_callback != None:
|
if Conversation.created_callback != None:
|
||||||
Conversation.created_callback()
|
Conversation.created_callback()
|
||||||
|
|
||||||
|
@ -123,7 +123,6 @@ class AnnounceStream(urwid.WidgetWrap):
|
|||||||
self.widget_list.insert(0, nw)
|
self.widget_list.insert(0, nw)
|
||||||
|
|
||||||
if len(new_widgets) > 0:
|
if len(new_widgets) > 0:
|
||||||
RNS.log("Inserted "+str(len(new_widgets))+" widgets")
|
|
||||||
if self.ilb != None:
|
if self.ilb != None:
|
||||||
self.ilb.set_body(self.widget_list)
|
self.ilb.set_body(self.widget_list)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user