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

Add debug log lines to help root-cause issue #334

parent 5cbdb404
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -890,6 +890,7 @@ while(client.socket.is_connected && !quit) { ...@@ -890,6 +890,7 @@ while(client.socket.is_connected && !quit) {
body=decode_news_body(hdr, body); body=decode_news_body(hdr, body);
log(LOG_DEBUG, "hdr.newsgroups: " + hdr.newsgroups);
var newsgroups=hdr.newsgroups.split(','); var newsgroups=hdr.newsgroups.split(',');
if(hdr.to==undefined && hdr.reply_id!=undefined) if(hdr.to==undefined && hdr.reply_id!=undefined)
...@@ -916,6 +917,7 @@ while(client.socket.is_connected && !quit) { ...@@ -916,6 +917,7 @@ while(client.socket.is_connected && !quit) {
break; break;
} }
log(LOG_DEBUG, "newsgroups: " + newsgroups);
for(n in newsgroups) for(n in newsgroups)
for(g in msg_area.grp_list) for(g in msg_area.grp_list)
for(s in msg_area.grp_list[g].sub_list) for(s in msg_area.grp_list[g].sub_list)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment