cleanup: Add newlines to cron job output

This commit is contained in:
overflowerror 2024-08-08 20:49:07 +02:00
parent ce3db3b15b
commit ad83911775
2 changed files with 5 additions and 5 deletions

View file

@ -3,10 +3,10 @@
require_once __DIR__ . "/../../core.php";
require_once __DIR__ . "/../../lib/housekeeping.php";
echo "Removing old session IDs from match table...";
echo "Removing old session IDs from match table...\n";
removeOldSessionIDs();
echo "Removing old audit logs...";
echo "Removing old audit logs...\n";
removeOldAuditLogs();
echo "Housekeeping done.";
echo "Housekeeping done.\n";

View file

@ -3,7 +3,7 @@
require_once __DIR__ . "/../../core.php";
require_once __DIR__ . "/../../lib/updateCache.php";
echo "Updating rating cache...";
echo "Updating rating cache...\n";
updateCache();
echo "Done.";
echo "Done.\n";