even more tracing

This commit is contained in:
Andrew Dolgov
2023-04-09 22:31:42 +03:00
parent e18295a364
commit fd5e0f98c4
4 changed files with 33 additions and 44 deletions

View File

@@ -2,6 +2,7 @@
class Digest
{
static function send_headlines_digests(): void {
$scope = Tracer::start(__METHOD__);
$user_limit = 15; // amount of users to process (e.g. emails to send out)
$limit = 1000; // maximum amount of headlines to include
@@ -75,6 +76,8 @@ class Digest
}
}
}
$scope->close();
Debug::log("All done.");
}