Skip to content
Snippets Groups Projects
Commit 380ae5b3 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 0af55795
No related branches found
No related tags found
No related merge requests found
......@@ -1839,7 +1839,7 @@ void sbbs_t::send_telnet_cmd(uchar cmd, uchar opt)
result = sendsocket(client_socket, buf, sz = 3);
}
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)
,result
,sz);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment