summaryrefslogtreecommitdiff
path: root/toxcore/net_crypto.c
diff options
context:
space:
mode:
authorzugz <mbays+tox@sdf.org>2018-07-14 15:32:30 +0200
committeriphydf <iphydf@users.noreply.github.com>2018-07-18 21:17:10 +0000
commit7c05b3a85ecdaae0c6e786ce6946835c3219fca4 (patch)
treee0c3e527efba248d9be9257c3a1abdd5c27802a0 /toxcore/net_crypto.c
parent7f6c681cfaab29aa976f346e9027af6eb731d73e (diff)
replace LOGGER_ERROR with LOGGER_DEBUG on send_data_packet() failure in send_lossless_packet()
Diffstat (limited to 'toxcore/net_crypto.c')
-rw-r--r--toxcore/net_crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c
index b9ffaf21..6ca29ef3 100644
--- a/toxcore/net_crypto.c
+++ b/toxcore/net_crypto.c
@@ -1174,7 +1174,7 @@ static int64_t send_lossless_packet(Net_Crypto *c, int crypt_connection_id, cons
1174 } 1174 }
1175 } else { 1175 } else {
1176 conn->maximum_speed_reached = 1; 1176 conn->maximum_speed_reached = 1;
1177 LOGGER_ERROR(c->log, "send_data_packet failed"); 1177 LOGGER_DEBUG(c->log, "send_data_packet failed");
1178 } 1178 }
1179 1179
1180 return packet_num; 1180 return packet_num;