mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
cleanup: Add newlines to cron job output
This commit is contained in:
parent
ce3db3b15b
commit
ad83911775
2 changed files with 5 additions and 5 deletions
|
@ -3,10 +3,10 @@
|
||||||
require_once __DIR__ . "/../../core.php";
|
require_once __DIR__ . "/../../core.php";
|
||||||
require_once __DIR__ . "/../../lib/housekeeping.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();
|
removeOldSessionIDs();
|
||||||
|
|
||||||
echo "Removing old audit logs...";
|
echo "Removing old audit logs...\n";
|
||||||
removeOldAuditLogs();
|
removeOldAuditLogs();
|
||||||
|
|
||||||
echo "Housekeeping done.";
|
echo "Housekeeping done.\n";
|
|
@ -3,7 +3,7 @@
|
||||||
require_once __DIR__ . "/../../core.php";
|
require_once __DIR__ . "/../../core.php";
|
||||||
require_once __DIR__ . "/../../lib/updateCache.php";
|
require_once __DIR__ . "/../../lib/updateCache.php";
|
||||||
|
|
||||||
echo "Updating rating cache...";
|
echo "Updating rating cache...\n";
|
||||||
updateCache();
|
updateCache();
|
||||||
|
|
||||||
echo "Done.";
|
echo "Done.\n";
|
||||||
|
|
Loading…
Reference in a new issue