WIAG-Logo Wissensaggregator Mittelalter und Frühe Neuzeit

Strukturierung, Standardisierung und Bereitstellung von Forschungsdaten aus Sach- und Schriftquellen des Mittelalters und der Frühen Neuzeit,
ein Forschungsprojekt der Germania Sacra.

Domherren des Alten Reiches
Ludwig von Ravensberg
Vater: Ludwig I. von Ravensberg
* um 1240 † 1308
Amtsangaben aus Referenzwerken
Ämter
Referenzwerke
  • Hans Jürgen Brandt, Minden – Domstift St. Petrus und Gorgonius, in: Westfälisches Klosterbuch. Lexikon der vor 1815 errichteten Stifte und Klöster von ihrer Gründung bis zur Aufhebung 1, hg. von Karl Hengst (Veröffentlichungen der Historischen Kommission für Westfalen 44/Quellen und Forschungen zur Kirchen- und Religionsgeschichte 2), Münster 1992, S. 587–593, S. 604
  • Wilhelm Dräger, Das Mindener Domkapitel und seine Domherren im Mittelalter (Mindener Jahrbuch 1936), Minden 1936, S. 53, 71, 105
  • Erwin Gatz (Hg.)/Clemens Brodkorb (Bearb.), Die Bischöfe des Heiligen Römischen Reiches 1198 bis 1448. Ein biographisches Lexikon, Berlin 2001, S. 528
  • Ferdinand Kränke, Die Osnabrücker Domherren des Mittelalters und ihre ständische und landsmannschaftliche Herkunft, Münster 1939, S. 33, 73
  • Niedersächsisches Klosterbuch. Verzeichnis der Klöster, Stifte, Kommenden und Beginenhäuser in Niedersachsen und Bremen von den Anfängen bis 1810, hg. von Josef Dolle unter Mitarbeit von Dennis Knochenhauer (Veröffentlichungen des Instituts für Historische Landesforschung 56), 4 Bde., Bielefeld 2012, hier Bd. 3, S. 1174
  • Sabine Wehking (Bearb.), Die Inschriften der Stadt Osnabrück, ges. u. bearb. von Sabine Wehking (Die Deutschen Inschriften 26), Wiesbaden 1988, ID/Nr. 15†
Externe Identifier
Deutsche Inschriften
Externe Online-Ressourcen
Empfohlene Zitierweise:
"Ludwig von Ravensberg" in: WIAG, https://wiag-vocab.adw-goe.de/id/WIAG-Pers-EPISCGatz-03258-001 (Abgerufen: 25.05.2025).
Loading…
Loading the web debug toolbar…
Attempt #
unlink(): Argument #1 ($filename) must not contain any null bytes (500 Internal Server Error)

Symfony Exception

ValueError

HTTP 500 Internal Server Error

unlink(): Argument #1 ($filename) must not contain any null bytes

Exception

ValueError

  1.             if ($csvTime >= $minimalProfileTimestamp) {
  2.                 break;
  3.             }
  4.             @unlink($this->getFilename($csvToken));
  5.             $offset += \strlen($line);
  6.         }
  7.         fclose($handle);
  8.         file_put_contents($file.'.offset'$offset);
  1.             if ($csvTime >= $minimalProfileTimestamp) {
  2.                 break;
  3.             }
  4.             @unlink($this->getFilename($csvToken));
  5.             $offset += \strlen($line);
  6.         }
  7.         fclose($handle);
  8.         file_put_contents($file.'.offset'$offset);
  1.                 $profile->getVirtualType() ?? 'request',
  2.             ], ',''"''\\');
  3.             fclose($file);
  4.             if (=== mt_rand(110)) {
  5.                 $this->removeExpiredProfiles();
  6.             }
  7.         }
  8.         return true;
  9.     }
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 157)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * @return void
  1.         } else {
  2.             $response->send();
  3.         }
  4.         if ($this->kernel instanceof TerminableInterface) {
  5.             $this->kernel->terminate($this->request$response);
  6.         }
  7.         return 0;
  8.     }
  9. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/web/wiag/www/wiagvokabulare/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 1

Level Channel Message
INFO 03:22:27 request Matched route "id".
{
    "route": "id",
    "route_parameters": {
        "_route": "id",
        "_controller": "App\\Controller\\IdController::id",
        "id": "WIAG-Pers-EPISCGatz-03258-001"
    },
    "request_uri": "http://wiag-vocab.adw-goe.de/id/WIAG-Pers-EPISCGatz-03258-001",
    "method": "GET"
}
DEBUG 03:22:27 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 3
}
DEBUG 03:22:27 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginFormAuthenticator"
}
DEBUG 03:22:27 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginFormAuthenticator"
}
DEBUG 03:22:27 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 03:22:27 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 03:22:27 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 03:22:27 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:22:27 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "ContainerCxoSl95\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerCxoSl95\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 03:22:27 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "db1",
        "port": 3306,
        "user": "wiagvokabula_adm",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "wiagvokabulare",
        "serverVersion": "5.7.44-0ubuntu0.18.04.1 esm1-log",
        "charset": "utf8mb4"
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.id_public = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.id_public = ?",
    "params": {
        "1": "WIAG-Pers-EPISCGatz-03258-001"
    },
    "types": {
        "1": 2
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id IN (?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id IN (?, ?)",
    "params": {
        "1": 14776,
        "2": 56386
    },
    "types": {
        "1": 1,
        "2": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.item_in_source AS item_in_source_3, t0.merged_into_id AS merged_into_id_4, t0.edit_status AS edit_status_5, t0.merge_status AS merge_status_6, t0.created_by AS created_by_7, t0.date_created AS date_created_8, t0.changed_by AS changed_by_9, t0.date_changed AS date_changed_10, t0.is_deleted AS is_deleted_11, t0.normdata_edited_by AS normdata_edited_by_12, t0.lang AS lang_13, t0.id_in_source AS id_in_source_14, t0.is_online AS is_online_15, t0.comment_duplicate AS comment_duplicate_16, t0.id AS id_17 FROM item t0 WHERE t0.id IN (?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.item_in_source AS item_in_source_3, t0.merged_into_id AS merged_into_id_4, t0.edit_status AS edit_status_5, t0.merge_status AS merge_status_6, t0.created_by AS created_by_7, t0.date_created AS date_created_8, t0.changed_by AS changed_by_9, t0.date_changed AS date_changed_10, t0.is_deleted AS is_deleted_11, t0.normdata_edited_by AS normdata_edited_by_12, t0.lang AS lang_13, t0.id_in_source AS id_in_source_14, t0.is_online AS is_online_15, t0.comment_duplicate AS comment_duplicate_16, t0.id AS id_17 FROM item t0 WHERE t0.id IN (?, ?, ?)",
    "params": {
        "1": 14776,
        "2": 56386,
        "3": 56386
    },
    "types": {
        "1": 1,
        "2": 1,
        "3": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id_name AS item_id_name_2, t0.item_id_role AS item_id_role_3, t0.item_id_name AS item_id_name_4, t0.item_id_role AS item_id_role_5 FROM item_name_role t0 WHERE t0.item_id_role IN (?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id_name AS item_id_name_2, t0.item_id_role AS item_id_role_3, t0.item_id_name AS item_id_name_4, t0.item_id_role AS item_id_role_5 FROM item_name_role t0 WHERE t0.item_id_role IN (?, ?)",
    "params": {
        "1": 56386,
        "2": 56386
    },
    "types": {
        "1": 1,
        "2": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT i0_.id AS id_0, i0_.comment AS comment_1, i0_.item_in_source AS item_in_source_2, i0_.merged_into_id AS merged_into_id_3, i0_.edit_status AS edit_status_4, i0_.merge_status AS merge_status_5, i0_.created_by AS created_by_6, i0_.date_created AS date_created_7, i0_.changed_by AS changed_by_8, i0_.date_changed AS date_changed_9, i0_.is_deleted AS is_deleted_10, i0_.normdata_edited_by AS normdata_edited_by_11, i0_.lang AS lang_12, i0_.id_in_source AS id_in_source_13, i0_.is_online AS is_online_14, i0_.comment_duplicate AS comment_duplicate_15, i0_.id AS id_16 FROM item i0_ INNER JOIN person p1_ ON i0_.id = p1_.id INNER JOIN item_name_role i2_ ON i0_.id = i2_.item_id_name INNER JOIN person p3_ ON i2_.item_id_role = p3_.id WHERE i0_.id IN (?) (parameters: {params}, types: {types})
{
    "sql": "SELECT i0_.id AS id_0, i0_.comment AS comment_1, i0_.item_in_source AS item_in_source_2, i0_.merged_into_id AS merged_into_id_3, i0_.edit_status AS edit_status_4, i0_.merge_status AS merge_status_5, i0_.created_by AS created_by_6, i0_.date_created AS date_created_7, i0_.changed_by AS changed_by_8, i0_.date_changed AS date_changed_9, i0_.is_deleted AS is_deleted_10, i0_.normdata_edited_by AS normdata_edited_by_11, i0_.lang AS lang_12, i0_.id_in_source AS id_in_source_13, i0_.is_online AS is_online_14, i0_.comment_duplicate AS comment_duplicate_15, i0_.id AS id_16 FROM item i0_ INNER JOIN person p1_ ON i0_.id = p1_.id INNER JOIN item_name_role i2_ ON i0_.id = i2_.item_id_name INNER JOIN person p3_ ON i2_.item_id_role = p3_.id WHERE i0_.id IN (?)",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id_name AS item_id_name_2, t0.item_id_role AS item_id_role_3, t0.item_id_name AS item_id_name_4, t0.item_id_role AS item_id_role_5 FROM item_name_role t0 WHERE t0.item_id_name = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id_name AS item_id_name_2, t0.item_id_role AS item_id_role_3, t0.item_id_name AS item_id_name_4, t0.item_id_role AS item_id_role_5 FROM item_name_role t0 WHERE t0.item_id_name = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.note_person AS note_person_3, t0.givenname AS givenname_4, t0.familyname AS familyname_5, t0.prefixname AS prefixname_6, t0.note_name AS note_name_7, t0.academic_title AS academic_title_8, t0.religious_order_id AS religious_order_id_9, t0.date_birth AS date_birth_10, t0.date_death AS date_death_11, t0.date_min AS date_min_12, t0.date_max AS date_max_13, t0.note_dates AS note_dates_14, t0.num_date_birth AS num_date_birth_15, t0.num_date_death AS num_date_death_16, t0.id AS id_17, t0.religious_order_id AS religious_order_id_18 FROM person t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.note_person AS note_person_3, t0.givenname AS givenname_4, t0.familyname AS familyname_5, t0.prefixname AS prefixname_6, t0.note_name AS note_name_7, t0.academic_title AS academic_title_8, t0.religious_order_id AS religious_order_id_9, t0.date_birth AS date_birth_10, t0.date_death AS date_death_11, t0.date_min AS date_min_12, t0.date_max AS date_max_13, t0.note_dates AS note_dates_14, t0.num_date_birth AS num_date_birth_15, t0.num_date_death AS num_date_death_16, t0.id AS id_17, t0.religious_order_id AS religious_order_id_18 FROM person t0 WHERE t0.id = ?",
    "params": {
        "1": 26945
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.person_id AS person_id_3, t0.role_id AS role_id_4, t0.role_name AS role_name_5, t0.diocese_id AS diocese_id_6, t0.diocese_name AS diocese_name_7, t0.date_begin AS date_begin_8, t0.date_end AS date_end_9, t0.num_date_begin AS num_date_begin_10, t0.num_date_end AS num_date_end_11, t0.institution_id AS institution_id_12, t0.display_order AS display_order_13, t0.uncertain AS uncertain_14, t0.note AS note_15, t0.institution_name AS institution_name_16, t0.date_sort_key AS date_sort_key_17, t0.person_id AS person_id_18, t0.institution_id AS institution_id_19, t0.role_id AS role_id_20, t0.diocese_id AS diocese_id_21 FROM person_role t0 WHERE t0.person_id IN (?) ORDER BY t0.date_sort_key ASC (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.person_id AS person_id_3, t0.role_id AS role_id_4, t0.role_name AS role_name_5, t0.diocese_id AS diocese_id_6, t0.diocese_name AS diocese_name_7, t0.date_begin AS date_begin_8, t0.date_end AS date_end_9, t0.num_date_begin AS num_date_begin_10, t0.num_date_end AS num_date_end_11, t0.institution_id AS institution_id_12, t0.display_order AS display_order_13, t0.uncertain AS uncertain_14, t0.note AS note_15, t0.institution_name AS institution_name_16, t0.date_sort_key AS date_sort_key_17, t0.person_id AS person_id_18, t0.institution_id AS institution_id_19, t0.role_id AS role_id_20, t0.diocese_id AS diocese_id_21 FROM person_role t0 WHERE t0.person_id IN (?) ORDER BY t0.date_sort_key ASC",
    "params": {
        "1": 26945
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.note_person AS note_person_3, t0.givenname AS givenname_4, t0.familyname AS familyname_5, t0.prefixname AS prefixname_6, t0.note_name AS note_name_7, t0.academic_title AS academic_title_8, t0.religious_order_id AS religious_order_id_9, t0.date_birth AS date_birth_10, t0.date_death AS date_death_11, t0.date_min AS date_min_12, t0.date_max AS date_max_13, t0.note_dates AS note_dates_14, t0.num_date_birth AS num_date_birth_15, t0.num_date_death AS num_date_death_16, t0.id AS id_17, t0.religious_order_id AS religious_order_id_18 FROM person t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.note_person AS note_person_3, t0.givenname AS givenname_4, t0.familyname AS familyname_5, t0.prefixname AS prefixname_6, t0.note_name AS note_name_7, t0.academic_title AS academic_title_8, t0.religious_order_id AS religious_order_id_9, t0.date_birth AS date_birth_10, t0.date_death AS date_death_11, t0.date_min AS date_min_12, t0.date_max AS date_max_13, t0.note_dates AS note_dates_14, t0.num_date_birth AS num_date_birth_15, t0.num_date_death AS num_date_death_16, t0.id AS id_17, t0.religious_order_id AS religious_order_id_18 FROM person t0 WHERE t0.id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.person_id AS person_id_3, t0.role_id AS role_id_4, t0.role_name AS role_name_5, t0.diocese_id AS diocese_id_6, t0.diocese_name AS diocese_name_7, t0.date_begin AS date_begin_8, t0.date_end AS date_end_9, t0.num_date_begin AS num_date_begin_10, t0.num_date_end AS num_date_end_11, t0.institution_id AS institution_id_12, t0.display_order AS display_order_13, t0.uncertain AS uncertain_14, t0.note AS note_15, t0.institution_name AS institution_name_16, t0.date_sort_key AS date_sort_key_17, t0.person_id AS person_id_18, t0.institution_id AS institution_id_19, t0.role_id AS role_id_20, t0.diocese_id AS diocese_id_21 FROM person_role t0 WHERE t0.person_id IN (?) ORDER BY t0.date_sort_key ASC (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.person_id AS person_id_3, t0.role_id AS role_id_4, t0.role_name AS role_name_5, t0.diocese_id AS diocese_id_6, t0.diocese_name AS diocese_name_7, t0.date_begin AS date_begin_8, t0.date_end AS date_end_9, t0.num_date_begin AS num_date_begin_10, t0.num_date_end AS num_date_end_11, t0.institution_id AS institution_id_12, t0.display_order AS display_order_13, t0.uncertain AS uncertain_14, t0.note AS note_15, t0.institution_name AS institution_name_16, t0.date_sort_key AS date_sort_key_17, t0.person_id AS person_id_18, t0.institution_id AS institution_id_19, t0.role_id AS role_id_20, t0.diocese_id AS diocese_id_21 FROM person_role t0 WHERE t0.person_id IN (?) ORDER BY t0.date_sort_key ASC",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.item_in_source AS item_in_source_3, t0.merged_into_id AS merged_into_id_4, t0.edit_status AS edit_status_5, t0.merge_status AS merge_status_6, t0.created_by AS created_by_7, t0.date_created AS date_created_8, t0.changed_by AS changed_by_9, t0.date_changed AS date_changed_10, t0.is_deleted AS is_deleted_11, t0.normdata_edited_by AS normdata_edited_by_12, t0.lang AS lang_13, t0.id_in_source AS id_in_source_14, t0.is_online AS is_online_15, t0.comment_duplicate AS comment_duplicate_16, t0.id AS id_17 FROM item t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.item_in_source AS item_in_source_3, t0.merged_into_id AS merged_into_id_4, t0.edit_status AS edit_status_5, t0.merge_status AS merge_status_6, t0.created_by AS created_by_7, t0.date_created AS date_created_8, t0.changed_by AS changed_by_9, t0.date_changed AS date_changed_10, t0.is_deleted AS is_deleted_11, t0.normdata_edited_by AS normdata_edited_by_12, t0.lang AS lang_13, t0.id_in_source AS id_in_source_14, t0.is_online AS is_online_15, t0.comment_duplicate AS comment_duplicate_16, t0.id AS id_17 FROM item t0 WHERE t0.id = ?",
    "params": {
        "1": 26945
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.note AS note_2, t0.page AS page_3, t0.id_in_reference AS id_in_reference_4, t0.is_preferred AS is_preferred_5, t0.item_id AS item_id_6, t0.reference_id AS reference_id_7, t0.item_id AS item_id_8 FROM item_reference t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.note AS note_2, t0.page AS page_3, t0.id_in_reference AS id_in_reference_4, t0.is_preferred AS is_preferred_5, t0.item_id AS item_id_6, t0.reference_id AS reference_id_7, t0.item_id AS item_id_8 FROM item_reference t0 WHERE t0.item_id = ?",
    "params": {
        "1": 26945
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.note AS note_2, t0.page AS page_3, t0.id_in_reference AS id_in_reference_4, t0.is_preferred AS is_preferred_5, t0.item_id AS item_id_6, t0.reference_id AS reference_id_7, t0.item_id AS item_id_8 FROM item_reference t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.note AS note_2, t0.page AS page_3, t0.id_in_reference AS id_in_reference_4, t0.is_preferred AS is_preferred_5, t0.item_id AS item_id_6, t0.reference_id AS reference_id_7, t0.item_id AS item_id_8 FROM item_reference t0 WHERE t0.item_id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT r0_.id AS id_0, r0_.is_online AS is_online_1, r0_.comment AS comment_2, r0_.reference_id AS reference_id_3, r0_.full_citation AS full_citation_4, r0_.title_short AS title_short_5, r0_.author_editor AS author_editor_6, r0_.note AS note_7, r0_.ri_opac_id AS ri_opac_id_8, r0_.isbn AS isbn_9, r0_.year_publication AS year_publication_10, r0_.display_order AS display_order_11, r0_.gs_volume_nr AS gs_volume_nr_12, r0_.gs_doi AS gs_doi_13, r0_.gs_url AS gs_url_14, r0_.online_resource AS online_resource_15, r0_.gs_citation AS gs_citation_16 FROM reference_volume r0_ WHERE r0_.reference_id IN (?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT r0_.id AS id_0, r0_.is_online AS is_online_1, r0_.comment AS comment_2, r0_.reference_id AS reference_id_3, r0_.full_citation AS full_citation_4, r0_.title_short AS title_short_5, r0_.author_editor AS author_editor_6, r0_.note AS note_7, r0_.ri_opac_id AS ri_opac_id_8, r0_.isbn AS isbn_9, r0_.year_publication AS year_publication_10, r0_.display_order AS display_order_11, r0_.gs_volume_nr AS gs_volume_nr_12, r0_.gs_doi AS gs_doi_13, r0_.gs_url AS gs_url_14, r0_.online_resource AS online_resource_15, r0_.gs_citation AS gs_citation_16 FROM reference_volume r0_ WHERE r0_.reference_id IN (?, ?, ?, ?, ?, ?)",
    "params": {
        "1": 1,
        "2": 48,
        "3": 75,
        "4": 86,
        "5": 90,
        "6": 139
    },
    "types": {
        "1": 1,
        "2": 1,
        "3": 1,
        "4": 1,
        "5": 1,
        "6": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.note AS note_3, t0.authority_id AS authority_id_4, t0.value AS value_5, t0.comment AS comment_6, t0.item_id AS item_id_7, t0.authority_id AS authority_id_8 FROM url_external t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.note AS note_3, t0.authority_id AS authority_id_4, t0.value AS value_5, t0.comment AS comment_6, t0.item_id AS item_id_7, t0.authority_id AS authority_id_8 FROM url_external t0 WHERE t0.item_id = ?",
    "params": {
        "1": 26945
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.note AS note_3, t0.authority_id AS authority_id_4, t0.value AS value_5, t0.comment AS comment_6, t0.item_id AS item_id_7, t0.authority_id AS authority_id_8 FROM url_external t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.note AS note_3, t0.authority_id AS authority_id_4, t0.value AS value_5, t0.comment AS comment_6, t0.item_id AS item_id_7, t0.authority_id AS authority_id_8 FROM url_external t0 WHERE t0.item_id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT a0_.id AS id_0, a0_.comment AS comment_1, a0_.url AS url_2, a0_.url_formatter AS url_formatter_3, a0_.url_type AS url_type_4, a0_.url_name_formatter AS url_name_formatter_5, a0_.url_value_example AS url_value_example_6, a0_.display_order AS display_order_7 FROM authority a0_ WHERE a0_.id IN (?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT a0_.id AS id_0, a0_.comment AS comment_1, a0_.url AS url_2, a0_.url_formatter AS url_formatter_3, a0_.url_type AS url_type_4, a0_.url_name_formatter AS url_name_formatter_5, a0_.url_value_example AS url_value_example_6, a0_.display_order AS display_order_7 FROM authority a0_ WHERE a0_.id IN (?, ?, ?, ?, ?, ?, ?)",
    "params": {
        "1": 1,
        "2": 200,
        "3": 2,
        "4": 4,
        "5": 3,
        "6": 69,
        "7": 42
    },
    "types": {
        "1": 1,
        "2": 1,
        "3": 1,
        "4": 1,
        "5": 1,
        "6": 1,
        "7": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.note AS note_3, t0.id_public_mask AS id_public_mask_4, t0.corpus_id AS corpus_id_5, t0.comment AS comment_6, t0.page_title AS page_title_7, t0.online_status AS online_status_8, t0.default_status AS default_status_9, t0.edit_form AS edit_form_10, t0.edit_choice_order AS edit_choice_order_11, t0.next_id_public AS next_id_public_12 FROM corpus t0 WHERE t0.corpus_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.note AS note_3, t0.id_public_mask AS id_public_mask_4, t0.corpus_id AS corpus_id_5, t0.comment AS comment_6, t0.page_title AS page_title_7, t0.online_status AS online_status_8, t0.default_status AS default_status_9, t0.edit_form AS edit_form_10, t0.edit_choice_order AS edit_choice_order_11, t0.next_id_public AS next_id_public_12 FROM corpus t0 WHERE t0.corpus_id = ?",
    "params": {
        "1": "can"
    },
    "types": {
        "1": 2
    }
}
DEBUG 03:22:27 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:22:27 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_id AS person_id_2, t0.name AS name_3, t0.lang AS lang_4, t0.person_id AS person_id_5 FROM givenname_variant t0 WHERE t0.person_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_id AS person_id_2, t0.name AS name_3, t0.lang AS lang_4, t0.person_id AS person_id_5 FROM givenname_variant t0 WHERE t0.person_id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_id AS person_id_2, t0.name AS name_3, t0.lang AS lang_4, t0.person_id AS person_id_5 FROM familyname_variant t0 WHERE t0.person_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_id AS person_id_2, t0.name AS name_3, t0.lang AS lang_4, t0.person_id AS person_id_5 FROM familyname_variant t0 WHERE t0.person_id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.comment AS comment_3, t0.value AS value_4, t0.date_value AS date_value_5, t0.property_type_id AS property_type_id_6, t0.place_value AS place_value_7, t0.item_id AS item_id_8, t0.property_type_id AS property_type_id_9, t10.id AS id_11, t10.name AS name_12, t10.comment AS comment_13, t10.display_order AS display_order_14 FROM item_property t0 LEFT JOIN item_property_type t10 ON t0.property_type_id = t10.id WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.comment AS comment_3, t0.value AS value_4, t0.date_value AS date_value_5, t0.property_type_id AS property_type_id_6, t0.place_value AS place_value_7, t0.item_id AS item_id_8, t0.property_type_id AS property_type_id_9, t10.id AS id_11, t10.name AS name_12, t10.comment AS comment_13, t10.display_order AS display_order_14 FROM item_property t0 LEFT JOIN item_property_type t10 ON t0.property_type_id = t10.id WHERE t0.item_id = ?",
    "params": {
        "1": 56386
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id = ?",
    "params": {
        "1": 26945
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ?",
    "params": {
        "1": 203
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ?",
    "params": {
        "1": 892
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 81925
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ?",
    "params": {
        "1": 106
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ?",
    "params": {
        "1": 6614
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 81921
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ?",
    "params": {
        "1": 6607
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 81922
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ?",
    "params": {
        "1": 150
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 81924
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.gs_reg_id AS gs_reg_id_5, t0.generic_term AS generic_term_6, t0.plural AS plural_7, t0.definition AS definition_8, t0.gender AS gender_9, t0.role_group_id AS role_group_id_10, t0.lang AS lang_11, t0.id AS id_12, t0.role_group_id AS role_group_id_13 FROM role t0 WHERE t0.id = ?",
    "params": {
        "1": 116
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.ecclesiastical_province AS ecclesiastical_province_5, t0.diocese_status AS diocese_status_6, t0.shapefile AS shapefile_7, t0.bishopric_seat_id AS bishopric_seat_id_8, t0.note_bishopric_seat AS note_bishopric_seat_9, t0.date_of_founding AS date_of_founding_10, t0.date_of_dissolution AS date_of_dissolution_11, t0.note_authority_file AS note_authority_file_12, t0.is_altes_reich AS is_altes_reich_13, t0.is_diocese_gs AS is_diocese_gs_14, t0.id AS id_15, t0.bishopric_seat_id AS bishopric_seat_id_16 FROM diocese t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.name AS name_3, t0.note AS note_4, t0.ecclesiastical_province AS ecclesiastical_province_5, t0.diocese_status AS diocese_status_6, t0.shapefile AS shapefile_7, t0.bishopric_seat_id AS bishopric_seat_id_8, t0.note_bishopric_seat AS note_bishopric_seat_9, t0.date_of_founding AS date_of_founding_10, t0.date_of_dissolution AS date_of_dissolution_11, t0.note_authority_file AS note_authority_file_12, t0.is_altes_reich AS is_altes_reich_13, t0.is_diocese_gs AS is_diocese_gs_14, t0.id AS id_15, t0.bishopric_seat_id AS bishopric_seat_id_16 FROM diocese t0 WHERE t0.id = ?",
    "params": {
        "1": 305
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.item_in_source AS item_in_source_3, t0.merged_into_id AS merged_into_id_4, t0.edit_status AS edit_status_5, t0.merge_status AS merge_status_6, t0.created_by AS created_by_7, t0.date_created AS date_created_8, t0.changed_by AS changed_by_9, t0.date_changed AS date_changed_10, t0.is_deleted AS is_deleted_11, t0.normdata_edited_by AS normdata_edited_by_12, t0.lang AS lang_13, t0.id_in_source AS id_in_source_14, t0.is_online AS is_online_15, t0.comment_duplicate AS comment_duplicate_16, t0.id AS id_17 FROM item t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.item_in_source AS item_in_source_3, t0.merged_into_id AS merged_into_id_4, t0.edit_status AS edit_status_5, t0.merge_status AS merge_status_6, t0.created_by AS created_by_7, t0.date_created AS date_created_8, t0.changed_by AS changed_by_9, t0.date_changed AS date_changed_10, t0.is_deleted AS is_deleted_11, t0.normdata_edited_by AS normdata_edited_by_12, t0.lang AS lang_13, t0.id_in_source AS id_in_source_14, t0.is_online AS is_online_15, t0.comment_duplicate AS comment_duplicate_16, t0.id AS id_17 FROM item t0 WHERE t0.id = ?",
    "params": {
        "1": 305
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.item_id AS item_id_2, t0.corpus_id AS corpus_id_3, t0.id_public AS id_public_4, t0.id_in_corpus AS id_in_corpus_5, t0.item_id AS item_id_6 FROM item_corpus t0 WHERE t0.item_id = ?",
    "params": {
        "1": 305
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 81923
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.comment AS comment_2, t0.id_gsn AS id_gsn_3, t0.name AS name_4, t0.note AS note_5, t0.name_short AS name_short_6, t0.id AS id_7 FROM institution t0 WHERE t0.id = ?",
    "params": {
        "1": 889
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 59398
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 59399
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 59400
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.person_role_id AS person_role_id_2, t0.person_id AS person_id_3, t0.comment AS comment_4, t0.name AS name_5, t0.value AS value_6, t0.note AS note_7, t0.property_type_id AS property_type_id_8, t0.person_role_id AS person_role_id_9, t0.property_type_id AS property_type_id_10, t11.id AS id_12, t11.name AS name_13, t11.comment AS comment_14, t11.display_order AS display_order_15 FROM person_role_property t0 LEFT JOIN item_property_type t11 ON t0.property_type_id = t11.id WHERE t0.person_role_id = ?",
    "params": {
        "1": 65157
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 03:22:27 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 03:22:27 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 03:22:27 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 03:22:27 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 03:22:27 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 03:22:27 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
CRITICAL 03:22:27 request Uncaught PHP Exception ValueError: "unlink(): Argument #1 ($filename) must not contain any null bytes" at FileProfilerStorage.php line 351
{
    "exception": {}
}
DEBUG 03:22:27 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 03:22:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 03:22:27 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:22:27 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "ContainerCxoSl95\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerCxoSl95\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 03:22:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

ValueError
ValueError:
unlink(): Argument #1 ($filename) must not contain any null bytes

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:351
  at unlink()
     (vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:351)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->removeExpiredProfiles()
     (vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:200)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write()
     (vendor/symfony/http-kernel/Profiler/Profiler.php:104)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:115)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (vendor/symfony/http-kernel/Kernel.php:157)
  at Symfony\Component\HttpKernel\Kernel->terminate()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:53)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/web/wiag/www/wiagvokabulare/vendor/autoload_runtime.php')
     (public/index.php:5)                
Loading…
Loading the web debug toolbar…
Attempt #
unlink(): Argument #1 ($filename) must not contain any null bytes (500 Internal Server Error)

Symfony Exception

ValueError

HTTP 500 Internal Server Error

unlink(): Argument #1 ($filename) must not contain any null bytes

Exception

ValueError

  1.             if ($csvTime >= $minimalProfileTimestamp) {
  2.                 break;
  3.             }
  4.             @unlink($this->getFilename($csvToken));
  5.             $offset += \strlen($line);
  6.         }
  7.         fclose($handle);
  8.         file_put_contents($file.'.offset'$offset);
  1.             if ($csvTime >= $minimalProfileTimestamp) {
  2.                 break;
  3.             }
  4.             @unlink($this->getFilename($csvToken));
  5.             $offset += \strlen($line);
  6.         }
  7.         fclose($handle);
  8.         file_put_contents($file.'.offset'$offset);
  1.                 $profile->getVirtualType() ?? 'request',
  2.             ], ',''"''\\');
  3.             fclose($file);
  4.             if (=== mt_rand(110)) {
  5.                 $this->removeExpiredProfiles();
  6.             }
  7.         }
  8.         return true;
  9.     }
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         }
  2.         $response->sendHeaders();
  3.         $response->sendContent();
  4.         $this->terminate($request$response);
  5.     }
  6.     /**
  7.      * Handles a request to convert it to a response.
  8.      *
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /web/wiag/www/wiagvokabulare/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
ErrorHandler->handleException()

Stack Trace

ValueError
ValueError:
unlink(): Argument #1 ($filename) must not contain any null bytes

  at /web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:351
  at unlink()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:351)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->removeExpiredProfiles()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:200)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/Profiler/Profiler.php:104)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/HttpKernel.php:115)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/HttpKernel.php:142)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/web/wiag/www/wiagvokabulare/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()