Compare commits

..

2 commits

Author SHA1 Message Date
noon92 c45f2ea32f
Merge 251825a123 into d8eea1640f 2024-09-26 21:03:51 -07:00
nagumii 251825a123 fix line break error 2024-09-26 19:02:17 +03:00

View file

@ -24,7 +24,7 @@ def send_message(message, destination, interface):
wantResponse=False wantResponse=False
) )
destid = get_node_id_from_num(destination, interface) destid = get_node_id_from_num(destination, interface)
logging.info(f"Sending message to user '{get_node_short_name(destid, interface)}' ({destid}) with sendID {d.id}: \'{chunk.replace("\n", "\\n")}\'") logging.info(f"Sending message to user '{get_node_short_name(destid, interface)}' ({destid}) with sendID {d.id}: \"{chunk.replace('\n', '\\n')}\"")
except Exception as e: except Exception as e:
logging.info(f"REPLY SEND ERROR {e.message}") logging.info(f"REPLY SEND ERROR {e.message}")