Adjusted re-balance loglevel

This commit is contained in:
Mark Qvist
2026-07-24 20:55:44 +02:00
parent 0d16e2305e
commit 4631d78bea
+1 -1
View File
@@ -2205,7 +2205,7 @@ class Transport:
elif packet.packet_type == RNS.Packet.PROOF:
if packet.context == RNS.Packet.LRPROOF:
# This is a link request proof, check if it needs to be transported
REBALANCE_LOGLEVEL = RNS.LOG_WARNING # TODO: Drop level after testing
REBALANCE_LOGLEVEL = RNS.LOG_DEBUG
if (RNS.Reticulum.transport_enabled() or for_local_client_link or from_local_client) and packet.destination_hash in Transport.link_table:
link_entry = Transport.link_table[packet.destination_hash]
if packet.hops != link_entry[IDX_LT_REM_HOPS] and Transport.ALLOW_LINK_PATH_REBALANCE: