Fix incorrect logging for failure to connect to internal server.

This commit is contained in:
Retro_Guy 2024-10-10 15:07:20 -07:00
parent bc9001203a
commit 2403c3fe11
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ if ($CONFIG['remote_server'] != '') {
echo "\nOPENING $ns2: " . $ns2 . "\n";
}
if (! $ns2) {
file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " Failed to connect to " . $CONFIG['remote_server'] . ":" . $CONFIG['remote_port'], FILE_APPEND);
file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " Failed to connect to local nntp server", FILE_APPEND);
// exit();
} else {
file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " Updating threads for: " . $name[0] . "...", FILE_APPEND);