fix(legacy): add log entry on task run (#2316)

This commit is contained in:
Jonas L 2022-12-16 19:06:56 +01:00
parent 5a8c357817
commit 5bdb2628b1
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ final class TaskManager
{
$task = TaskFactory::getTask($taskName);
if ($task && $task->shouldBeRun()) {
Logging::debug("running task {$taskName}");
$task->run();
}
// Mark that the task has been checked/run.