From 2403c3fe11255c80ad380f0ca0b26950426db325 Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Thu, 10 Oct 2024 15:07:20 -0700 Subject: [PATCH] Fix incorrect logging for failure to connect to internal server. --- Rocksolid_Light/rslight/scripts/spoolnews.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rocksolid_Light/rslight/scripts/spoolnews.php b/Rocksolid_Light/rslight/scripts/spoolnews.php index a48cb38..2c99055 100644 --- a/Rocksolid_Light/rslight/scripts/spoolnews.php +++ b/Rocksolid_Light/rslight/scripts/spoolnews.php @@ -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);