From 8d46af0dc24b3e2af45da45287ae7f8e8a28a1ce Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Sat, 16 Jul 2022 11:34:41 +0530 Subject: [PATCH] feat: remove var_dump --- app/workers/databases.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/workers/databases.php b/app/workers/databases.php index 63b41e4e91..71e78b3777 100644 --- a/app/workers/databases.php +++ b/app/workers/databases.php @@ -77,8 +77,6 @@ class DatabaseV1 extends Worker * Fetch attribute from the database, since with Resque float values are loosing informations. */ $attribute = $dbForProject->getDocument('attributes', $attribute->getId()); - var_dump($attribute); - var_dump($attribute->getId()); $collectionId = $collection->getId(); $key = $attribute->getAttribute('key', ''); @@ -99,8 +97,6 @@ class DatabaseV1 extends Worker } $dbForProject->updateDocument('attributes', $attribute->getId(), $attribute->setAttribute('status', 'available')); } catch (\Throwable $th) { - var_dump($th->getTraceAsString()); - var_dump($attribute->getArrayCopy()); Console::error($th->getMessage()); $dbForProject->updateDocument('attributes', $attribute->getId(), $attribute->setAttribute('status', 'failed')); } finally {