From 5c8eea5d78019a30fa44508ab7d7483170951a40 Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Sat, 20 Jan 2024 11:47:41 -0700 Subject: [PATCH] Remove debugging wording in send.php logging. --- Rocksolid_Light/rslight/scripts/send.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rocksolid_Light/rslight/scripts/send.php b/Rocksolid_Light/rslight/scripts/send.php index ff18f9d..7388b86 100644 --- a/Rocksolid_Light/rslight/scripts/send.php +++ b/Rocksolid_Light/rslight/scripts/send.php @@ -90,7 +90,7 @@ function post_articles($ns, $spooldir) } if (strcmp(substr($response, 0, 3), "240") == 0) { $removed = unlink($outgoing_dir . $message); - file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " Posted: " . $message . ": " . $response . " Removed: " . $removed, FILE_APPEND); + file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " Posted: " . $message . ": " . $response, FILE_APPEND); } else { file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " Failed to POST: " . $message . ": " . $response, FILE_APPEND); continue;