diff --git a/app/workers/deletes.php b/app/workers/deletes.php index 9321d5bfa4..686b4caee0 100644 --- a/app/workers/deletes.php +++ b/app/workers/deletes.php @@ -625,7 +625,7 @@ class DeletesV1 extends Worker $sum = count($results); - Console::info('Deleting chunk #' . $chunk . '. Found ' . $sum . ' documents in collection ' . '_' . $database->getNamespace() . '_' . $collection); + Console::info('Deleting chunk #' . $chunk . '. Found ' . $sum . ' documents in collection ' . $database->getNamespace() . '_' . $collection); foreach ($results as $document) { $this->deleteById($document, $database, $callback); diff --git a/src/Appwrite/Resque/Worker.php b/src/Appwrite/Resque/Worker.php index a075c15690..a09a192506 100644 --- a/src/Appwrite/Resque/Worker.php +++ b/src/Appwrite/Resque/Worker.php @@ -179,8 +179,6 @@ abstract class Worker $pools = $register->get('pools'); /** @var \Utopia\Pools\Group $pools */ - Console::log("Getting project DB for {$project->getId()}"); - if ($project->isEmpty() || $project->getId() === 'console') { return $this->getConsoleDB(); }