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

Don't log an error when a QWKnet node uploads votes for old messages

Log an info-level message instead.
Raise the log level severity of duplicate votes from Debug to Info too.
parent d5ad7869
No related branches found
No related tags found
No related merge requests found
...@@ -1135,15 +1135,16 @@ bool sbbs_t::qwk_vote(str_list_t ini, const char* section, smb_net_type_t net_ty ...@@ -1135,15 +1135,16 @@ bool sbbs_t::qwk_vote(str_list_t ini, const char* section, smb_net_type_t net_ty
notice = text[PollVoteNotice]; notice = text[PollVoteNotice];
} }
result = votemsg(&cfg, &smb, &msg, notice, text[VoteNoticeFmt]); result = votemsg(&cfg, &smb, &msg, notice, text[VoteNoticeFmt]);
if(result == SMB_DUPE_MSG) if(result == SMB_DUPE_MSG) {
lprintf(LOG_DEBUG, "Duplicate vote-msg (%s) from %s", msg.id, qnet_id); lprintf(LOG_INFO, "Duplicate vote-msg (%s) from %s", msg.id, qnet_id);
}
else if(result == SMB_ERR_HDR_FIELD) {
lprintf(LOG_INFO, "Error %s (%d) writing %s vote-msg (%s) to %s"
,smb.last_error, result, qnet_id, msg.id, smb.file);
result = SMB_SUCCESS; // ignore vote failures for old messages
}
else if(result != SMB_SUCCESS) { else if(result != SMB_SUCCESS) {
if(hubnum >= 0) { errormsg(WHERE, ERR_WRITE, smb.file, result, smb.last_error);
lprintf(LOG_DEBUG, "Error %s (%d) writing %s vote-msg (%s) to %s"
,smb.last_error, result, qnet_id, msg.id, smb.file);
result = SMB_SUCCESS; // ignore vote failures for old messages
} else
errormsg(WHERE, ERR_WRITE, smb.file, result, smb.last_error);
} }
} }
else if(strnicmp(section, "close:", 6) == 0) { else if(strnicmp(section, "close:", 6) == 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment