mirror of
https://github.com/markqvist/NomadNet.git
synced 2024-12-26 23:59:26 -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
|
||||
# our list of conversations
|
||||
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):
|
||||
RNS.log("It is also in the directory")
|
||||
if Conversation.created_callback != None:
|
||||
Conversation.created_callback()
|
||||
else:
|
||||
RNS.log("But it is not in the directory")
|
||||
if Conversation.created_callback != None:
|
||||
Conversation.created_callback()
|
||||
|
||||
|
@ -123,7 +123,6 @@ class AnnounceStream(urwid.WidgetWrap):
|
||||
self.widget_list.insert(0, nw)
|
||||
|
||||
if len(new_widgets) > 0:
|
||||
RNS.log("Inserted "+str(len(new_widgets))+" widgets")
|
||||
if self.ilb != None:
|
||||
self.ilb.set_body(self.widget_list)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user