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); }