Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
5cbdb40433b4bb25fd39517913bfb7339b926b73...879c123ec4897cfbd5b534097855768f187cc4ed
Commits (1)
Add debug log lines to help root-cause issue
#334
· 879c123e
Rob Swindell
authored
Feb 03, 2022
879c123e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
exec/nntpservice.js
exec/nntpservice.js
+2
-0
No files found.
exec/nntpservice.js
View file @
879c123e
...
...
@@ -890,6 +890,7 @@ while(client.socket.is_connected && !quit) {
body
=
decode_news_body
(
hdr
,
body
);
log
(
LOG_DEBUG
,
"
hdr.newsgroups:
"
+
hdr
.
newsgroups
);
var
newsgroups
=
hdr
.
newsgroups
.
split
(
'
,
'
);
if
(
hdr
.
to
==
undefined
&&
hdr
.
reply_id
!=
undefined
)
...
...
@@ -916,6 +917,7 @@ while(client.socket.is_connected && !quit) {
break
;
}
log
(
LOG_DEBUG
,
"
newsgroups:
"
+
newsgroups
);
for
(
n
in
newsgroups
)
for
(
g
in
msg_area
.
grp_list
)
for
(
s
in
msg_area
.
grp_list
[
g
].
sub_list
)
...
...