Skip to content
Snippets Groups Projects
Commit d1e32893 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Lower log level of send_telnet_cmd() send failure (to debug level)

As apparently these happen a lot when a client disconnects right
away after connecting.
parent ce2056f4
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3541 passed
...@@ -1839,7 +1839,7 @@ void sbbs_t::send_telnet_cmd(uchar cmd, uchar opt) ...@@ -1839,7 +1839,7 @@ void sbbs_t::send_telnet_cmd(uchar cmd, uchar opt)
result = sendsocket(client_socket, buf, sz = 3); result = sendsocket(client_socket, buf, sz = 3);
} }
if(result != sz) if(result != sz)
lprintf(LOG_ERR, "ERROR sending telnet command (%s): send returned %d instead of %d" lprintf(LOG_DEBUG, "ERROR sending telnet command (%s): send returned %d instead of %d"
,telnet_cmd_desc(cmd) ,telnet_cmd_desc(cmd)
,result ,result
,sz); ,sz);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment