From f3d4ef05b3e6822c76e8fd8fab6af0c3d6c24fee Mon Sep 17 00:00:00 2001 From: thomasafink Date: Tue, 9 Jan 2024 10:59:22 +0100 Subject: [PATCH] Remove error logs --- zmsentities/src/Zmsentities/Schema/Factory.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/zmsentities/src/Zmsentities/Schema/Factory.php b/zmsentities/src/Zmsentities/Schema/Factory.php index 368f3aae6..18b6a0961 100644 --- a/zmsentities/src/Zmsentities/Schema/Factory.php +++ b/zmsentities/src/Zmsentities/Schema/Factory.php @@ -34,7 +34,6 @@ public function getEntity() { $entityName = $this->getEntityName(); $class = "\\BO\\Zmsentities\\$entityName"; - error_log($class); return new $class(new UnflattedArray($this->data)); } @@ -50,7 +49,6 @@ public function getEntityName() throw new \BO\Zmsentities\Exception\SchemaMissingKey('Missing $schema-key on given data.'); } $schema = $this->data['$schema']; - error_log($schema ); $entityName = preg_replace('#^.*/([^/]+)\.json#', '$1', $schema); return ucfirst($entityName); }