delete_spammers script: log start/end times

This commit is contained in:
David Anderson 2014-06-21 09:32:41 -07:00
parent 1a33c1465d
commit eebfca71d3
1 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,8 @@ function delete_banished() {
}
}
echo "Starting: ".strftime('%Y-%m-%d %H:%M %Z')."\n";
for ($i=1; $i<$argc; $i++) {
if ($argv[$i] == "--test") {
$test = true;
@ -185,5 +187,6 @@ for ($i=1; $i<$argc; $i++) {
exit;
}
}
echo "Finished: ".strftime('%Y-%m-%d %H:%M %Z')."\n";
?>