From 38354fb891dc509006c0a81651ffc6d17796466f Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Tue, 26 Nov 2024 17:10:48 +1300 Subject: [PATCH] Remove dump --- src/Database/Database.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Database/Database.php b/src/Database/Database.php index 50987c197..7764554b4 100644 --- a/src/Database/Database.php +++ b/src/Database/Database.php @@ -1222,7 +1222,6 @@ public function createCollection(string $id, array $attributes = [], array $inde try { $createdCollection = $this->silent(fn () => $this->createDocument(self::METADATA, $collection)); } catch (Exception $e) { - \var_dump('Error creating collection ' . $id . ' metadata document. Deleting collection.' . "\n" . $e->getMessage() . "\n" . $e->getTraceAsString()); $this->adapter->deleteCollection($id); throw $e; }