Minor wording change in logging in nocem.php.

This commit is contained in:
Retro_Guy 2024-11-21 11:04:06 -07:00
parent de3a82174e
commit 1cb98869b1
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ foreach ($messages as $message) {
$allgroups = preg_split("/\ |\,/", $found[1]);
foreach ($allgroups as $group_item) {
if ($status = get_history_status($found[0], $group_item)) {
file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " " . $found[0] . " appears as " . $status['status'] . ":" . $status['statusreason'] . " in history. Trying anyway...", FILE_APPEND);
file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " " . $found[0] . " appears as " . $status['status'] . ":" . $status['statusreason'] . " in history.", FILE_APPEND);
} else {
file_put_contents($logfile, "\n" . format_log_date() . " " . $config_name . " " . $found[0] . " not found in history database (this is not an error)", FILE_APPEND);
}