[2020-04-10T06:56:55.829200+00:00] console.ERROR: Error thrown while running command "make:migration". Message: "An exception occurred in driver: SQLSTATE[HY000] [2002] No such file or directory" {"exception":"[object] (Doctrine\\DBAL\\Exception\\ConnectionException(code: 0): An exception occurred in driver: SQLSTATE[HY000] [2002] No such file or directory at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:93)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 2002): SQLSTATE[HY000] [2002] No such file or directory at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:31)\n[previous exception] [object] (PDOException(code: 2002): SQLSTATE[HY000] [2002] No such file or directory at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:27)","command":"make:migration","message":"An exception occurred in driver: SQLSTATE[HY000] [2002] No such file or directory"} [] [2020-04-10T06:56:55.833209+00:00] console.DEBUG: Command "make:migration" exited with code "1" {"command":"make:migration","code":1} [] [2020-04-10T06:58:20.221859+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T06:58:20.270226+00:00] doctrine.DEBUG: CREATE TABLE migration_versions (version VARCHAR(14) NOT NULL, executed_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', PRIMARY KEY(version)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB [] [] [2020-04-10T06:58:20.451412+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T06:58:20.452145+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T06:58:20.453809+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T06:58:20.458458+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T06:58:20.459087+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T06:58:42.743523+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T06:58:42.746060+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T06:58:42.754354+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T06:58:42.755232+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T06:58:42.757600+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T06:58:42.759528+00:00] doctrine.DEBUG: SELECT version FROM migration_versions [] [] [2020-04-10T06:58:46.446141+00:00] doctrine.DEBUG: SELECT version FROM migration_versions WHERE version IN ('20200410065820') ORDER BY version DESC LIMIT 1 [] [] [2020-04-10T06:58:46.447940+00:00] doctrine.DEBUG: SELECT version FROM migration_versions [] [] [2020-04-10T06:58:46.452520+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T06:58:46.595279+00:00] doctrine.DEBUG: CREATE TABLE category (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB [] [] [2020-04-10T06:58:46.612186+00:00] doctrine.DEBUG: CREATE TABLE actuality (id INT AUTO_INCREMENT NOT NULL, category_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, sub_title VARCHAR(255) DEFAULT NULL, texte LONGTEXT DEFAULT NULL, INDEX IDX_4093DDD812469DE2 (category_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB [] [] [2020-04-10T06:58:46.688458+00:00] doctrine.DEBUG: CREATE TABLE pictures (id INT AUTO_INCREMENT NOT NULL, actuality_id INT DEFAULT NULL, filename VARCHAR(255) NOT NULL, INDEX IDX_8F7C2FC0B84BD854 (actuality_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB [] [] [2020-04-10T06:58:46.787748+00:00] doctrine.DEBUG: ALTER TABLE actuality ADD CONSTRAINT FK_4093DDD812469DE2 FOREIGN KEY (category_id) REFERENCES category (id) [] [] [2020-04-10T06:58:46.813139+00:00] doctrine.DEBUG: ALTER TABLE pictures ADD CONSTRAINT FK_8F7C2FC0B84BD854 FOREIGN KEY (actuality_id) REFERENCES actuality (id) [] [] [2020-04-10T06:58:46.835042+00:00] doctrine.DEBUG: INSERT INTO migration_versions (version, executed_at) VALUES (?, ?) ["20200410065820","2020-04-10 06:58:46"] [] [2020-04-10T06:58:46.839547+00:00] doctrine.DEBUG: "COMMIT" [] [] [2020-04-10T06:59:26.527236+00:00] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET /"" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php line 136 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException(code: 0): No route found for \"GET /\" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php:136)\n[previous exception] [object] (Symfony\\Component\\Routing\\Exception\\NoConfigurationException(code: 0): at /Applications/MAMP/htdocs/Adeline/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:182)"} [] [2020-04-10T06:59:26.853167+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c3e7d8"},"request_uri":"http://localhost:8000/_wdt/c3e7d8","method":"GET"} [] [2020-04-10T08:16:19.537645+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_controller":"Symfony\\Bundle\\FrameworkBundle\\Controller\\RedirectController::urlRedirectAction","path":"/admin","permanent":true,"scheme":null,"httpPort":8000,"httpsPort":443,"_route":"admin"},"request_uri":"http://localhost:8000/admin/","method":"GET"} [] [2020-04-10T08:16:19.559783+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:16:19.607309+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:16:19.684374+00:00] request.CRITICAL: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\ControllerDoesNotReturnResponseException: "The controller must return a "Symfony\Component\HttpFoundation\Response" object but it returned null. Did you forget to add a return statement somewhere in your controller?" at /Applications/MAMP/htdocs/Adeline/src/Controller/Admin/AdminController.php line 34 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\ControllerDoesNotReturnResponseException(code: 0): The controller must return a \"Symfony\\Component\\HttpFoundation\\Response\" object but it returned null. Did you forget to add a return statement somewhere in your controller? at /Applications/MAMP/htdocs/Adeline/src/Controller/Admin/AdminController.php:34)"} [] [2020-04-10T08:16:19.720700+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:16:20.181451+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"71763b"},"request_uri":"http://localhost:8000/_wdt/71763b","method":"GET"} [] [2020-04-10T08:19:25.872153+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:19:25.915547+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:19:25.993281+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:23:20.536148+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:23:20.551922+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:23:20.604136+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\RuntimeError: "An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "logout" as such route does not exist.")." at /Applications/MAMP/htdocs/Adeline/templates/admin/baseAdmin.html.twig line 31 {"exception":"[object] (Twig\\Error\\RuntimeError(code: 0): An exception has been thrown during the rendering of a template (\"Unable to generate a URL for the named route \"logout\" as such route does not exist.\"). at /Applications/MAMP/htdocs/Adeline/templates/admin/baseAdmin.html.twig:31)\n[previous exception] [object] (Symfony\\Component\\Routing\\Exception\\RouteNotFoundException(code: 0): Unable to generate a URL for the named route \"logout\" as such route does not exist. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/routing/Generator/CompiledUrlGenerator.php:50)"} [] [2020-04-10T08:23:20.666335+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:23:21.374378+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b6da23"},"request_uri":"http://localhost:8000/_wdt/b6da23","method":"GET"} [] [2020-04-10T08:23:41.067009+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:23:41.079353+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:23:41.095278+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:23:41.599461+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"442c37"},"request_uri":"http://localhost:8000/_wdt/442c37","method":"GET"} [] [2020-04-10T08:24:25.386790+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T08:24:25.629316+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T08:24:25.661161+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\LoaderError: "Unable to find template "admin/actuality/new.html.twig" (looked into: /Applications/MAMP/htdocs/Adeline/templates, /Applications/MAMP/htdocs/Adeline/vendor/symfony/twig-bridge/Resources/views/Form)." at /Applications/MAMP/htdocs/Adeline/vendor/twig/twig/src/Loader/FilesystemLoader.php line 227 {"exception":"[object] (Twig\\Error\\LoaderError(code: 0): Unable to find template \"admin/actuality/new.html.twig\" (looked into: /Applications/MAMP/htdocs/Adeline/templates, /Applications/MAMP/htdocs/Adeline/vendor/symfony/twig-bridge/Resources/views/Form). at /Applications/MAMP/htdocs/Adeline/vendor/twig/twig/src/Loader/FilesystemLoader.php:227)"} [] [2020-04-10T08:24:25.698590+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:24:26.114975+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1ed199"},"request_uri":"http://localhost:8000/_wdt/1ed199","method":"GET"} [] [2020-04-10T08:33:11.705746+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:33:11.730098+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:33:11.743699+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:33:14.524986+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3e0e21"},"request_uri":"http://localhost:8000/_wdt/3e0e21","method":"GET"} [] [2020-04-10T08:33:15.980508+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T08:33:16.004420+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T08:33:16.077192+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\RuntimeError: "Neither the property "cateogry" nor one of the methods "cateogry()", "getcateogry()"/"iscateogry()"/"hascateogry()" or "__call()" exist and have public access in class "Symfony\Component\Form\FormView"." at /Applications/MAMP/htdocs/Adeline/templates/admin/actuality/_form.html.twig line 5 {"exception":"[object] (Twig\\Error\\RuntimeError(code: 0): Neither the property \"cateogry\" nor one of the methods \"cateogry()\", \"getcateogry()\"/\"iscateogry()\"/\"hascateogry()\" or \"__call()\" exist and have public access in class \"Symfony\\Component\\Form\\FormView\". at /Applications/MAMP/htdocs/Adeline/templates/admin/actuality/_form.html.twig:5)"} [] [2020-04-10T08:33:16.127101+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:33:16.571727+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3753fe"},"request_uri":"http://localhost:8000/_wdt/3753fe","method":"GET"} [] [2020-04-10T08:33:27.145092+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T08:33:27.163283+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T08:33:27.186001+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:33:27.596354+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3d21d6"},"request_uri":"http://localhost:8000/_wdt/3d21d6","method":"GET"} [] [2020-04-10T08:33:33.998376+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:33:34.023768+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:33:34.037423+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:33:34.459603+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4085b3"},"request_uri":"http://localhost:8000/_wdt/4085b3","method":"GET"} [] [2020-04-10T08:35:39.302279+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:35:39.312938+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:35:39.337153+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:35:39.769380+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1e36ef"},"request_uri":"http://localhost:8000/_wdt/1e36ef","method":"GET"} [] [2020-04-10T08:44:07.360355+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T08:44:07.373811+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:44:07.409656+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:07.751436+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"715214"},"request_uri":"http://localhost:8000/_wdt/715214","method":"GET"} [] [2020-04-10T08:44:08.972784+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T08:44:08.981485+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T08:44:09.003723+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:09.703796+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1b7fd0"},"request_uri":"http://localhost:8000/_wdt/1b7fd0","method":"GET"} [] [2020-04-10T08:44:10.244458+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T08:44:10.269213+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T08:44:10.316865+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:10.757531+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"731eec"},"request_uri":"http://localhost:8000/_wdt/731eec","method":"GET"} [] [2020-04-10T08:44:40.074135+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T08:44:40.095726+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T08:44:40.117799+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:40.540803+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4d3791"},"request_uri":"http://localhost:8000/_wdt/4d3791","method":"GET"} [] [2020-04-10T08:44:44.770165+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T08:44:44.787743+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T08:44:44.814656+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:45.496271+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"257718"},"request_uri":"http://localhost:8000/_wdt/257718","method":"GET"} [] [2020-04-10T08:44:46.534026+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T08:44:46.578341+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:46.921104+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"04837d"},"request_uri":"http://localhost:8000/_wdt/04837d","method":"GET"} [] [2020-04-10T08:44:56.941673+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T08:44:56.946528+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:44:57.455206+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"77b2bc"},"request_uri":"http://localhost:8000/_wdt/77b2bc","method":"GET"} [] [2020-04-10T08:46:07.767507+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T08:46:07.776696+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:46:08.213095+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"78c205"},"request_uri":"http://localhost:8000/_wdt/78c205","method":"GET"} [] [2020-04-10T08:46:09.266438+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T08:46:09.268918+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:46:09.684926+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"86880c"},"request_uri":"http://localhost:8000/_wdt/86880c","method":"GET"} [] [2020-04-10T08:47:36.003120+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T08:47:36.035040+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T08:47:36.055896+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:47:36.470970+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"452512"},"request_uri":"http://localhost:8000/_wdt/452512","method":"GET"} [] [2020-04-10T08:47:37.425400+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T08:47:37.452172+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:47:37.752254+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"496665"},"request_uri":"http://localhost:8000/_wdt/496665","method":"GET"} [] [2020-04-10T08:47:40.651209+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T08:47:40.656805+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:47:41.066551+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"88a294"},"request_uri":"http://localhost:8000/_wdt/88a294","method":"GET"} [] [2020-04-10T08:50:31.938684+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T08:50:31.953659+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T08:50:31.960857+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:50:32.383007+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"351613"},"request_uri":"http://localhost:8000/_wdt/351613","method":"GET"} [] [2020-04-10T08:50:33.086237+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T08:50:33.104057+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T08:50:33.122680+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:50:33.459390+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"11c134"},"request_uri":"http://localhost:8000/_wdt/11c134","method":"GET"} [] [2020-04-10T08:50:35.643796+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T08:50:35.657074+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T08:50:35.664639+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:50:36.022031+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"47f57e"},"request_uri":"http://localhost:8000/_wdt/47f57e","method":"GET"} [] [2020-04-10T08:50:53.922144+00:00] php.DEBUG: Warning: include(/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"function":"include"}],"count":1}}} [] [2020-04-10T08:50:53.926658+00:00] php.DEBUG: Warning: include(): Failed opening '/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php' for inclusion (include_path='.:/usr/local/Cellar/php/7.3.4_1/share/php/pear') [] [] [2020-04-10T08:50:58.192850+00:00] php.DEBUG: Warning: file(/proc/mounts): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/framework-bundle/Command/CacheClearCommand.php","line":137,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Command/Command.php","line":255,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"}],"count":1}}} [] [2020-04-10T08:52:40.547653+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T08:52:40.604509+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T08:52:40.617151+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:52:41.146764+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8b4c81"},"request_uri":"http://localhost:8000/_wdt/8b4c81","method":"GET"} [] [2020-04-10T08:52:42.769193+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T08:52:42.828088+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:52:43.456140+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"120a26"},"request_uri":"http://localhost:8000/_wdt/120a26","method":"GET"} [] [2020-04-10T08:52:46.580812+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T08:52:46.584896+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:52:47.138363+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ade3e0"},"request_uri":"http://localhost:8000/_wdt/ade3e0","method":"GET"} [] [2020-04-10T08:54:09.504396+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T08:54:09.507864+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T08:54:11.240398+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"be7759"},"request_uri":"http://localhost:8000/_wdt/be7759","method":"GET"} [] [2020-04-10T08:58:16.191661+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"be7759"},"request_uri":"http://localhost:8000/_profiler/be7759?panel=form","method":"GET"} [] [2020-04-10T08:58:16.247018+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T08:58:22.415784+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"be7759"},"request_uri":"http://localhost:8000/_profiler/be7759?panel=translation","method":"GET"} [] [2020-04-10T08:58:22.435625+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=translation","method":"GET"} [] [2020-04-10T08:58:26.009097+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"be7759"},"request_uri":"http://localhost:8000/_profiler/be7759?panel=form","method":"GET"} [] [2020-04-10T08:58:26.023946+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T09:08:33.625384+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:08:33.631467+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:08:34.157827+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"339add"},"request_uri":"http://localhost:8000/_wdt/339add","method":"GET"} [] [2020-04-10T09:08:39.519411+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:08:39.538134+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:08:39.553712+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:08:39.947578+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3ff030"},"request_uri":"http://localhost:8000/_wdt/3ff030","method":"GET"} [] [2020-04-10T09:08:46.477826+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:08:46.517275+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:08:46.893954+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"786db6"},"request_uri":"http://localhost:8000/_wdt/786db6","method":"GET"} [] [2020-04-10T09:08:54.210201+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:08:54.212973+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:08:54.743162+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d07dd7"},"request_uri":"http://localhost:8000/_wdt/d07dd7","method":"GET"} [] [2020-04-10T09:11:40.627349+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:11:40.629541+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:11:41.574215+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"994ea2"},"request_uri":"http://localhost:8000/_wdt/994ea2","method":"GET"} [] [2020-04-10T09:11:45.435808+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:11:45.445770+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:11:45.457939+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:11:45.802879+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ef7b1a"},"request_uri":"http://localhost:8000/_wdt/ef7b1a","method":"GET"} [] [2020-04-10T09:11:46.990913+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:11:47.023490+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:11:47.417753+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b7bb3f"},"request_uri":"http://localhost:8000/_wdt/b7bb3f","method":"GET"} [] [2020-04-10T09:11:49.435672+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:11:49.439338+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:11:49.937064+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7bd968"},"request_uri":"http://localhost:8000/_wdt/7bd968","method":"GET"} [] [2020-04-10T09:12:46.271514+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:12:46.273059+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:12:46.958761+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8f5234"},"request_uri":"http://localhost:8000/_wdt/8f5234","method":"GET"} [] [2020-04-10T09:12:51.062877+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:12:51.076347+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:12:51.123534+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:12:51.584642+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"aa55ab"},"request_uri":"http://localhost:8000/_wdt/aa55ab","method":"GET"} [] [2020-04-10T09:12:56.320512+00:00] php.DEBUG: Warning: include(/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"function":"include"}],"count":1}}} [] [2020-04-10T09:12:56.325199+00:00] php.DEBUG: Warning: include(): Failed opening '/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php' for inclusion (include_path='.:/usr/local/Cellar/php/7.3.4_1/share/php/pear') [] [] [2020-04-10T09:12:59.988016+00:00] php.DEBUG: Warning: file(/proc/mounts): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/framework-bundle/Command/CacheClearCommand.php","line":137,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Command/Command.php","line":255,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"}],"count":1}}} [] [2020-04-10T09:13:05.024286+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:13:05.252586+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:13:05.267178+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:06.094034+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"219f20"},"request_uri":"http://localhost:8000/_wdt/219f20","method":"GET"} [] [2020-04-10T09:13:07.915777+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:13:07.930747+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:13:07.941740+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:08.439489+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"112a46"},"request_uri":"http://localhost:8000/_wdt/112a46","method":"GET"} [] [2020-04-10T09:13:11.175439+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:13:11.225823+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:11.546875+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a6dc7e"},"request_uri":"http://localhost:8000/_wdt/a6dc7e","method":"GET"} [] [2020-04-10T09:13:15.005827+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:13:15.010332+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:15.715565+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"29b5d5"},"request_uri":"http://localhost:8000/_wdt/29b5d5","method":"GET"} [] [2020-04-10T09:13:21.310778+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T09:13:21.326716+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:13:21.338481+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:21.977340+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"32ad13"},"request_uri":"http://localhost:8000/_wdt/32ad13","method":"GET"} [] [2020-04-10T09:13:22.684450+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T09:13:22.708063+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T09:13:22.727083+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:23.113511+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a8571e"},"request_uri":"http://localhost:8000/_wdt/a8571e","method":"GET"} [] [2020-04-10T09:13:32.521381+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T09:13:32.523074+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:13:32.609858+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T09:13:32.972743+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fdb02c"},"request_uri":"http://localhost:8000/_wdt/fdb02c","method":"GET"} [] [2020-04-10T09:13:57.324556+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"fdb02c"},"request_uri":"http://localhost:8000/_profiler/fdb02c?panel=form","method":"GET"} [] [2020-04-10T09:13:57.370004+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T09:14:33.930017+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"fdb02c"},"request_uri":"http://localhost:8000/_profiler/fdb02c?panel=validator","method":"GET"} [] [2020-04-10T09:14:33.955522+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=validator","method":"GET"} [] [2020-04-10T09:14:36.112086+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"fdb02c"},"request_uri":"http://localhost:8000/_profiler/fdb02c?panel=form","method":"GET"} [] [2020-04-10T09:14:36.125541+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T09:19:01.746896+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:19:01.771440+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:19:01.788333+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:19:02.261869+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"675d57"},"request_uri":"http://localhost:8000/_wdt/675d57","method":"GET"} [] [2020-04-10T09:21:47.906985+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:21:48.104318+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:21:48.197081+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:21:48.594819+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"85c36a"},"request_uri":"http://localhost:8000/_wdt/85c36a","method":"GET"} [] [2020-04-10T09:21:52.324684+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:21:52.340453+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:21:52.353568+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:21:52.683048+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fc7781"},"request_uri":"http://localhost:8000/_wdt/fc7781","method":"GET"} [] [2020-04-10T09:21:53.333586+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:21:53.492455+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:21:53.932988+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a96b4d"},"request_uri":"http://localhost:8000/_wdt/a96b4d","method":"GET"} [] [2020-04-10T09:21:57.187536+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:21:57.189167+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:21:57.708209+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e332c0"},"request_uri":"http://localhost:8000/_wdt/e332c0","method":"GET"} [] [2020-04-10T09:22:39.814384+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"e332c0"},"request_uri":"http://localhost:8000/_profiler/e332c0?panel=form","method":"GET"} [] [2020-04-10T09:22:39.846914+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T09:23:57.050511+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\DefaultController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T09:23:57.067216+00:00] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The controller for URI "/" is not callable. Controller "App\Controller\DefaultController" does neither exist as service nor as class.." at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Controller/ControllerResolver.php line 88 {"exception":"[object] (InvalidArgumentException(code: 0): The controller for URI \"/\" is not callable. Controller \"App\\Controller\\DefaultController\" does neither exist as service nor as class.. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Controller/ControllerResolver.php:88)\n[previous exception] [object] (InvalidArgumentException(code: 0): Controller \"App\\Controller\\DefaultController\" does neither exist as service nor as class. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:67)\n[previous exception] [object] (Error(code: 0): Class 'App\\Controller\\DefaultController' not found at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Controller/ControllerResolver.php:147)"} [] [2020-04-10T09:23:57.193373+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:23:57.610018+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0ffb5b"},"request_uri":"http://localhost:8000/_wdt/0ffb5b","method":"GET"} [] [2020-04-10T09:24:21.788181+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T09:24:21.891188+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:24:28.131155+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:24:28.145236+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:24:28.153236+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:24:28.575627+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"92811f"},"request_uri":"http://localhost:8000/_wdt/92811f","method":"GET"} [] [2020-04-10T09:24:29.667310+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:24:29.674617+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:24:29.679293+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:24:30.038320+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c267a6"},"request_uri":"http://localhost:8000/_wdt/c267a6","method":"GET"} [] [2020-04-10T09:24:31.276625+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:24:31.299470+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:24:31.693313+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d8a540"},"request_uri":"http://localhost:8000/_wdt/d8a540","method":"GET"} [] [2020-04-10T09:24:34.002190+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:24:34.005455+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:24:34.324122+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bfd572"},"request_uri":"http://localhost:8000/_wdt/bfd572","method":"GET"} [] [2020-04-10T09:31:29.812183+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:31:29.840749+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:31:29.907308+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:30.156931+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"be9392"},"request_uri":"http://localhost:8000/_wdt/be9392","method":"GET"} [] [2020-04-10T09:31:31.710117+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:31:31.720386+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:31:31.732534+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:32.649204+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"aaa03a"},"request_uri":"http://localhost:8000/_wdt/aaa03a","method":"GET"} [] [2020-04-10T09:31:34.806649+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:31:34.822422+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:31:34.830494+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:35.140751+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7d85c9"},"request_uri":"http://localhost:8000/_wdt/7d85c9","method":"GET"} [] [2020-04-10T09:31:36.035840+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:31:36.101161+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:36.283667+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a05bd8"},"request_uri":"http://localhost:8000/_wdt/a05bd8","method":"GET"} [] [2020-04-10T09:31:38.687902+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:38.691557+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:39.094314+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2264ef"},"request_uri":"http://localhost:8000/_wdt/2264ef","method":"GET"} [] [2020-04-10T09:31:40.738615+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:40.740454+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:41.076705+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a1a991"},"request_uri":"http://localhost:8000/_wdt/a1a991","method":"GET"} [] [2020-04-10T09:31:41.442143+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:41.444116+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:41.632844+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:41.635252+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:41.890165+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:41.892167+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:41.999737+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:42.001204+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:42.108772+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:42.109741+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:42.405361+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"076423"},"request_uri":"http://localhost:8000/_wdt/076423","method":"GET"} [] [2020-04-10T09:31:42.631799+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:42.633280+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:42.817301+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:42.818891+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:42.976960+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:42.983098+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:43.136491+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:43.138411+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:43.288068+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:43.288964+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:43.549640+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"53bdd7"},"request_uri":"http://localhost:8000/_wdt/53bdd7","method":"GET"} [] [2020-04-10T09:31:43.850687+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:43.851853+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:43.953865+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:43.956176+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:44.096099+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:44.098006+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:44.276008+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:31:44.282990+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:31:44.631542+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2a31d7"},"request_uri":"http://localhost:8000/_wdt/2a31d7","method":"GET"} [] [2020-04-10T09:32:04.153603+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:32:04.156368+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:04.629757+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d826a0"},"request_uri":"http://localhost:8000/_wdt/d826a0","method":"GET"} [] [2020-04-10T09:32:06.962685+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:32:06.983747+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\DBAL\Exception\ConnectionException: "An exception occurred in driver: SQLSTATE[HY000] [2002] Connection refused" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 93 {"exception":"[object] (Doctrine\\DBAL\\Exception\\ConnectionException(code: 0): An exception occurred in driver: SQLSTATE[HY000] [2002] Connection refused at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:93)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 2002): SQLSTATE[HY000] [2002] Connection refused at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:31)\n[previous exception] [object] (PDOException(code: 2002): SQLSTATE[HY000] [2002] Connection refused at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:27)"} [] [2020-04-10T09:32:07.100064+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:07.614943+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f6abce"},"request_uri":"http://localhost:8000/_wdt/f6abce","method":"GET"} [] [2020-04-10T09:32:21.355433+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:32:21.372250+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:32:21.389876+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:21.793436+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ff36f8"},"request_uri":"http://localhost:8000/_wdt/ff36f8","method":"GET"} [] [2020-04-10T09:32:22.861510+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T09:32:22.940940+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T09:32:22.959468+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:23.167950+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"13cae1"},"request_uri":"http://localhost:8000/_wdt/13cae1","method":"GET"} [] [2020-04-10T09:32:27.822871+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:32:27.836579+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:32:27.842739+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:28.119844+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"82ef2e"},"request_uri":"http://localhost:8000/_wdt/82ef2e","method":"GET"} [] [2020-04-10T09:32:29.003900+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:32:29.034012+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:29.366662+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b646f6"},"request_uri":"http://localhost:8000/_wdt/b646f6","method":"GET"} [] [2020-04-10T09:32:31.137134+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:32:31.140142+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:32:31.524059+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b3e962"},"request_uri":"http://localhost:8000/_wdt/b3e962","method":"GET"} [] [2020-04-10T09:33:10.360360+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"b3e962"},"request_uri":"http://localhost:8000/_profiler/b3e962?panel=form","method":"GET"} [] [2020-04-10T09:33:10.387897+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T09:33:14.364398+00:00] request.INFO: Matched route "_profiler_open_file". {"route":"_profiler_open_file","route_parameters":{"_route":"_profiler_open_file","_controller":"web_profiler.controller.profiler::openAction"},"request_uri":"http://localhost:8000/_profiler/open?file=vendor%2Fsymfony%2Fsecurity-csrf%2FCsrfToken.php&line=19","method":"GET"} [] [2020-04-10T09:35:36.333577+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:35:36.334491+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:35:36.997484+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ea854b"},"request_uri":"http://localhost:8000/_wdt/ea854b","method":"GET"} [] [2020-04-10T09:35:39.807614+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:35:39.817783+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:35:39.824181+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:35:40.057717+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"57d37b"},"request_uri":"http://localhost:8000/_wdt/57d37b","method":"GET"} [] [2020-04-10T09:35:40.820988+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:35:40.856152+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:35:41.058532+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"25de87"},"request_uri":"http://localhost:8000/_wdt/25de87","method":"GET"} [] [2020-04-10T09:35:43.893687+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:35:43.896239+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:35:44.167233+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"009013"},"request_uri":"http://localhost:8000/_wdt/009013","method":"GET"} [] [2020-04-10T09:39:25.295605+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"009013"},"request_uri":"http://localhost:8000/_profiler/009013?panel=form","method":"GET"} [] [2020-04-10T09:39:25.313846+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=form","method":"GET"} [] [2020-04-10T09:39:54.363100+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:54.365287+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:54.792803+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b9d956"},"request_uri":"http://localhost:8000/_wdt/b9d956","method":"GET"} [] [2020-04-10T09:39:57.254113+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:57.259638+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:57.678888+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c3a714"},"request_uri":"http://localhost:8000/_wdt/c3a714","method":"GET"} [] [2020-04-10T09:39:57.859317+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:57.861120+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:57.963327+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:57.964615+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:58.165307+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:58.168703+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:58.330256+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:58.332007+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:58.425133+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:58.426476+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:58.803438+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a7ca65"},"request_uri":"http://localhost:8000/_wdt/a7ca65","method":"GET"} [] [2020-04-10T09:39:58.916388+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:58.918978+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:59.124642+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:59.131454+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:59.297807+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:59.299788+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:59.426961+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:59.427822+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:59.515499+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:39:59.516940+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:39:59.906993+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"55ba77"},"request_uri":"http://localhost:8000/_wdt/55ba77","method":"GET"} [] [2020-04-10T09:40:00.138387+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:00.140185+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:00.305993+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:00.309114+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:00.480447+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:00.482146+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:00.631564+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:00.633661+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:00.935131+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1767e1"},"request_uri":"http://localhost:8000/_wdt/1767e1","method":"GET"} [] [2020-04-10T09:40:01.234131+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:01.235584+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:01.682171+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b0e6ac"},"request_uri":"http://localhost:8000/_wdt/b0e6ac","method":"GET"} [] [2020-04-10T09:40:01.871379+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:01.873254+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:02.055444+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:02.058397+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:02.147332+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:02.150002+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:02.338338+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:40:02.340937+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:40:02.683528+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dac695"},"request_uri":"http://localhost:8000/_wdt/dac695","method":"GET"} [] [2020-04-10T09:41:44.014872+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T09:41:44.027959+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T09:41:44.035043+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:41:44.348688+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b779e1"},"request_uri":"http://localhost:8000/_wdt/b779e1","method":"GET"} [] [2020-04-10T09:42:41.385038+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T09:42:41.409796+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T09:42:41.456669+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:41.848526+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"35a64f"},"request_uri":"http://localhost:8000/_wdt/35a64f","method":"GET"} [] [2020-04-10T09:42:46.350208+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T09:42:46.364308+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T09:42:46.373272+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:46.765306+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c98037"},"request_uri":"http://localhost:8000/_wdt/c98037","method":"GET"} [] [2020-04-10T09:42:47.281353+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T09:42:47.304326+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:47.678144+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e2aebe"},"request_uri":"http://localhost:8000/_wdt/e2aebe","method":"GET"} [] [2020-04-10T09:42:49.967218+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:42:49.970453+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:50.359456+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"805619"},"request_uri":"http://localhost:8000/_wdt/805619","method":"GET"} [] [2020-04-10T09:42:53.248363+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:42:53.250435+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:53.508490+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fb9db3"},"request_uri":"http://localhost:8000/_wdt/fb9db3","method":"GET"} [] [2020-04-10T09:42:54.865857+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:42:54.867110+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:55.221500+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6128e1"},"request_uri":"http://localhost:8000/_wdt/6128e1","method":"GET"} [] [2020-04-10T09:42:58.381579+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:42:58.384095+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:42:58.759800+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e3c7c6"},"request_uri":"http://localhost:8000/_wdt/e3c7c6","method":"GET"} [] [2020-04-10T09:43:00.461305+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T09:43:00.462805+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T09:43:00.824645+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b4ce37"},"request_uri":"http://localhost:8000/_wdt/b4ce37","method":"GET"} [] [2020-04-10T09:44:02.853456+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T09:44:02.857684+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T09:44:02.874413+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T09:44:02.875854+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T09:44:02.887129+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T09:44:02.890891+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T09:44:02.891743+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'actuality' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T09:44:02.892664+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'actuality' */ WHERE k.table_name = 'actuality' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T09:44:02.894255+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'actuality' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T09:44:02.894838+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'actuality' [] [] [2020-04-10T09:44:02.895146+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'category' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T09:44:02.895629+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'category' */ WHERE k.table_name = 'category' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T09:44:02.896018+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'category' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T09:44:02.896281+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'category' [] [] [2020-04-10T09:44:02.896517+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T09:44:02.896902+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T09:44:02.897182+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T09:44:02.897427+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T09:44:02.897657+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'pictures' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T09:44:02.898785+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'pictures' */ WHERE k.table_name = 'pictures' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T09:44:02.899353+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'pictures' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T09:44:02.899695+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'pictures' [] [] [2020-04-10T09:44:17.551252+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T09:44:17.553307+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T09:44:17.560111+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T09:44:17.560713+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T09:44:17.562689+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T09:44:17.565398+00:00] doctrine.DEBUG: SELECT version FROM migration_versions [] [] [2020-04-10T09:44:19.693952+00:00] doctrine.DEBUG: SELECT version FROM migration_versions WHERE version IN ('20200410065820', '20200410094402') ORDER BY version DESC LIMIT 1 [] [] [2020-04-10T09:44:19.698923+00:00] doctrine.DEBUG: SELECT version FROM migration_versions [] [] [2020-04-10T09:44:19.704258+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T09:44:19.776135+00:00] doctrine.DEBUG: CREATE TABLE user (id INT AUTO_INCREMENT NOT NULL, username VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB [] [] [2020-04-10T09:44:19.795124+00:00] doctrine.DEBUG: INSERT INTO migration_versions (version, executed_at) VALUES (?, ?) ["20200410094402","2020-04-10 09:44:19"] [] [2020-04-10T09:44:19.798085+00:00] doctrine.DEBUG: "COMMIT" [] [] [2020-04-10T09:49:44.286025+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T09:49:44.293341+00:00] request.CRITICAL: Uncaught PHP Exception Symfony\Component\DependencyInjection\Exception\RuntimeException: "Cannot autowire argument $encoder of "App\Controller\HomeController::index()": it references interface "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" but no such service exists. Did you create a class that implements this interface?" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/dependency-injection/Container.php line 435 {"exception":"[object] (Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException(code: 0): Cannot autowire argument $encoder of \"App\\Controller\\HomeController::index()\": it references interface \"Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface\" but no such service exists. Did you create a class that implements this interface? at /Applications/MAMP/htdocs/Adeline/vendor/symfony/dependency-injection/Container.php:435)"} [] [2020-04-10T09:49:44.664501+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"08e1a4"},"request_uri":"http://localhost:8000/_wdt/08e1a4","method":"GET"} [] [2020-04-10T09:50:12.137835+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T09:50:12.142692+00:00] request.CRITICAL: Uncaught PHP Exception Symfony\Component\DependencyInjection\Exception\RuntimeException: "Cannot autowire argument $encoder of "App\Controller\HomeController::index()": it references interface "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" but no such service exists. Did you create a class that implements this interface?" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/dependency-injection/Container.php line 435 {"exception":"[object] (Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException(code: 0): Cannot autowire argument $encoder of \"App\\Controller\\HomeController::index()\": it references interface \"Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface\" but no such service exists. Did you create a class that implements this interface? at /Applications/MAMP/htdocs/Adeline/vendor/symfony/dependency-injection/Container.php:435)"} [] [2020-04-10T09:50:12.520594+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dfae7a"},"request_uri":"http://localhost:8000/_wdt/dfae7a","method":"GET"} [] [2020-04-10T11:03:50.338670+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:03:50.450719+00:00] request.CRITICAL: Uncaught PHP Exception Symfony\Component\DependencyInjection\Exception\RuntimeException: "Cannot autowire argument $encoder of "App\Controller\HomeController::index()": it references interface "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" but no such service exists. Did you create a class that implements this interface?" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/dependency-injection/Container.php line 435 {"exception":"[object] (Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException(code: 0): Cannot autowire argument $encoder of \"App\\Controller\\HomeController::index()\": it references interface \"Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface\" but no such service exists. Did you create a class that implements this interface? at /Applications/MAMP/htdocs/Adeline/vendor/symfony/dependency-injection/Container.php:435)"} [] [2020-04-10T11:03:50.812401+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"646208"},"request_uri":"http://localhost:8000/_wdt/646208","method":"GET"} [] [2020-04-10T11:06:38.034723+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:06:38.039933+00:00] php.CRITICAL: Uncaught Error: Argument 1 passed to Symfony\Component\Security\Core\Encoder\UserPasswordEncoder::encodePassword() must implement interface Symfony\Component\Security\Core\User\UserInterface, string given, called in /Applications/MAMP/htdocs/Adeline/src/Controller/HomeController.php on line 24 {"exception":"[object] (TypeError(code: 0): Argument 1 passed to Symfony\\Component\\Security\\Core\\Encoder\\UserPasswordEncoder::encodePassword() must implement interface Symfony\\Component\\Security\\Core\\User\\UserInterface, string given, called in /Applications/MAMP/htdocs/Adeline/src/Controller/HomeController.php on line 24 at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Encoder/UserPasswordEncoder.php:33)"} [] [2020-04-10T11:06:38.045739+00:00] request.CRITICAL: Uncaught PHP Exception TypeError: "Argument 1 passed to Symfony\Component\Security\Core\Encoder\UserPasswordEncoder::encodePassword() must implement interface Symfony\Component\Security\Core\User\UserInterface, string given, called in /Applications/MAMP/htdocs/Adeline/src/Controller/HomeController.php on line 24" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Encoder/UserPasswordEncoder.php line 33 {"exception":"[object] (TypeError(code: 0): Argument 1 passed to Symfony\\Component\\Security\\Core\\Encoder\\UserPasswordEncoder::encodePassword() must implement interface Symfony\\Component\\Security\\Core\\User\\UserInterface, string given, called in /Applications/MAMP/htdocs/Adeline/src/Controller/HomeController.php on line 24 at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Encoder/UserPasswordEncoder.php:33)"} [] [2020-04-10T11:06:38.397110+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4b10da"},"request_uri":"http://localhost:8000/_wdt/4b10da","method":"GET"} [] [2020-04-10T11:07:00.112200+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:07:00.509644+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T11:07:00.560974+00:00] doctrine.DEBUG: INSERT INTO user (username, password) VALUES (?, ?) {"1":"AdelineMilletAdmin458","2":"$2y$12$nsRCWQT7s9HFj4kXPxl [...]"} [] [2020-04-10T11:07:00.569079+00:00] doctrine.DEBUG: "COMMIT" [] [] [2020-04-10T11:28:01.735451+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T11:28:01.742201+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:28:01.753734+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T11:28:01.754981+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T11:28:01.805113+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:28:01.807227+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:28:02.792885+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a45f6f"},"request_uri":"http://localhost:8000/_wdt/a45f6f","method":"GET"} [] [2020-04-10T11:28:37.671430+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T11:28:37.688785+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T11:28:37.958499+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T11:28:37.963374+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T11:28:37.990119+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:29:12.786131+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T11:29:12.789055+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:29:12.794583+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T11:29:12.794820+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T11:29:12.848312+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:29:12.849762+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:29:15.778940+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fe7bcb"},"request_uri":"http://localhost:8000/_wdt/fe7bcb","method":"GET"} [] [2020-04-10T11:30:09.563012+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:31:09.954759+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T11:31:09.969441+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T11:31:10.282118+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T11:31:10.287723+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T11:31:10.320353+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:31:15.848834+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T11:31:15.851434+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:31:15.856881+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T11:31:15.857151+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T11:31:15.902397+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:31:15.903734+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:31:16.853692+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fcc452"},"request_uri":"http://localhost:8000/_wdt/fcc452","method":"GET"} [] [2020-04-10T11:46:33.592549+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T11:46:33.610063+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T11:46:33.911049+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T11:46:33.916777+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T11:46:33.945315+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:49:05.691785+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:49:05.884881+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"797981"},"request_uri":"http://localhost:8000/_wdt/797981","method":"GET"} [] [2020-04-10T11:49:15.150832+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T11:49:15.153318+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:49:15.159188+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T11:49:15.159489+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T11:49:15.222224+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:49:15.235401+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:49:16.517315+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a3db9c"},"request_uri":"http://localhost:8000/_wdt/a3db9c","method":"GET"} [] [2020-04-10T11:49:34.183583+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T11:49:34.202392+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T11:49:34.511005+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T11:49:34.516288+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T11:49:34.549799+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:49:34.735102+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cdf891"},"request_uri":"http://localhost:8000/_wdt/cdf891","method":"GET"} [] [2020-04-10T11:49:42.989247+00:00] request.INFO: Matched route "_profiler_open_file". {"route":"_profiler_open_file","route_parameters":{"_route":"_profiler_open_file","_controller":"web_profiler.controller.profiler::openAction"},"request_uri":"http://localhost:8000/_profiler/open?file=src%2FController%2FSecurityController.php&line=10","method":"GET"} [] [2020-04-10T11:49:46.738197+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"76962e"},"request_uri":"http://localhost:8000/_profiler/76962e","method":"GET"} [] [2020-04-10T11:49:46.765727+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar","method":"GET"} [] [2020-04-10T11:51:27.907466+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T11:51:27.909467+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:51:27.913842+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T11:51:27.914006+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T11:51:27.966899+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:51:27.968497+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:51:30.205244+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2899f2"},"request_uri":"http://localhost:8000/_wdt/2899f2","method":"GET"} [] [2020-04-10T11:51:46.923281+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T11:51:46.933883+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T11:51:47.215411+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T11:51:47.219432+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T11:51:47.247603+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:51:47.358253+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"51424f"},"request_uri":"http://localhost:8000/_wdt/51424f","method":"GET"} [] [2020-04-10T11:57:39.262176+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T11:57:39.266042+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:57:39.276723+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T11:57:39.276912+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T11:57:39.313436+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:57:39.314647+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:57:39.479321+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"443bfc"},"request_uri":"http://localhost:8000/_wdt/443bfc","method":"GET"} [] [2020-04-10T11:58:33.078992+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T11:58:33.081886+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T11:58:33.383861+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3c28c9"},"request_uri":"http://localhost:8000/_wdt/3c28c9","method":"GET"} [] [2020-04-10T11:58:44.998795+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T11:58:45.015276+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T11:58:45.307281+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T11:58:45.310358+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T11:58:45.347303+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T11:58:45.597926+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"713c9c"},"request_uri":"http://localhost:8000/_wdt/713c9c","method":"GET"} [] [2020-04-10T12:03:35.424930+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T12:03:35.429351+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:03:35.437663+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T12:03:35.437913+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T12:03:35.477162+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:03:35.478456+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:03:35.685389+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5024a5"},"request_uri":"http://localhost:8000/_wdt/5024a5","method":"GET"} [] [2020-04-10T12:03:37.023984+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:03:37.062873+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:03:37.070566+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:03:37.070791+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:03:37.106910+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:03:37.108099+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:03:37.382769+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4a8e6c"},"request_uri":"http://localhost:8000/_wdt/4a8e6c","method":"GET"} [] [2020-04-10T12:06:22.309931+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:06:22.313393+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:06:22.802571+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f7419e"},"request_uri":"http://localhost:8000/_wdt/f7419e","method":"GET"} [] [2020-04-10T12:06:24.019995+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:06:24.038747+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:06:24.040600+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:06:24.040766+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:06:24.086748+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:06:24.090640+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:06:24.384325+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cc4a40"},"request_uri":"http://localhost:8000/_wdt/cc4a40","method":"GET"} [] [2020-04-10T12:06:31.133946+00:00] request.INFO: Matched route "_profiler_open_file". {"route":"_profiler_open_file","route_parameters":{"_route":"_profiler_open_file","_controller":"web_profiler.controller.profiler::openAction"},"request_uri":"http://localhost:8000/_profiler/open?file=src%2FController%2FSecurityController.php&line=10","method":"GET"} [] [2020-04-10T12:07:27.337555+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:07:27.344255+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:07:27.345516+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:07:27.345615+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:07:27.428313+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:07:27.430033+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:07:28.195702+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ad7d47"},"request_uri":"http://localhost:8000/_wdt/ad7d47","method":"GET"} [] [2020-04-10T12:07:30.989359+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:07:31.000033+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["rrr"] [] [2020-04-10T12:07:31.001326+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"rrr\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:07:31.001540+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:07:31.039027+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:07:31.040548+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:07:31.930766+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e4f372"},"request_uri":"http://localhost:8000/_wdt/e4f372","method":"GET"} [] [2020-04-10T12:15:02.530819+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:15:02.543626+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T12:15:02.545109+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:84)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): The presented password cannot be empty. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:55)"} [] [2020-04-10T12:15:02.545253+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:15:02.586246+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:15:02.587667+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:15:04.989815+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"57c611"},"request_uri":"http://localhost:8000/_wdt/57c611","method":"GET"} [] [2020-04-10T12:15:11.098994+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:15:11.112716+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T12:15:11.114028+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:84)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): The presented password cannot be empty. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:55)"} [] [2020-04-10T12:15:11.114166+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:15:11.160631+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:15:11.162806+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:15:12.023355+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b12e6c"},"request_uri":"http://localhost:8000/_wdt/b12e6c","method":"GET"} [] [2020-04-10T12:15:18.710831+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:15:18.718286+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T12:15:18.968740+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T12:15:18.971649+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T12:15:18.992640+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T12:15:19.850820+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"45e5a9"},"request_uri":"http://localhost:8000/_wdt/45e5a9","method":"GET"} [] [2020-04-10T12:16:13.535062+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T12:16:13.540464+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:16:13.548239+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T12:16:13.548564+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T12:16:13.595993+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:16:13.597438+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:16:14.001899+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"160d15"},"request_uri":"http://localhost:8000/_wdt/160d15","method":"GET"} [] [2020-04-10T12:16:15.629086+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:16:15.637523+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:16:15.639496+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:16:15.639616+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:16:15.675546+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:16:15.677165+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:16:16.051198+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f2a96f"},"request_uri":"http://localhost:8000/_wdt/f2a96f","method":"GET"} [] [2020-04-10T12:16:19.139439+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:16:19.148858+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdminAgenceOrphea065"] [] [2020-04-10T12:16:19.150114+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"AdminAgenceOrphea065\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:16:19.150256+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:16:19.179678+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:16:19.180724+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:16:19.570874+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6b4cbe"},"request_uri":"http://localhost:8000/_wdt/6b4cbe","method":"GET"} [] [2020-04-10T12:18:30.729986+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:18:30.740919+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdminAgenceOrphea065"] [] [2020-04-10T12:18:30.742198+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"AdminAgenceOrphea065\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:18:30.742322+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:18:30.795094+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:18:30.796282+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:18:31.578137+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d7b652"},"request_uri":"http://localhost:8000/_wdt/d7b652","method":"GET"} [] [2020-04-10T12:20:08.427577+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:20:08.431100+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:20:08.929008+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"43dfea"},"request_uri":"http://localhost:8000/_wdt/43dfea","method":"GET"} [] [2020-04-10T12:20:10.826241+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:20:10.837144+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:20:10.839706+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:20:10.839849+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:20:10.887564+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:20:10.889365+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:20:11.818459+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"640c72"},"request_uri":"http://localhost:8000/_wdt/640c72","method":"GET"} [] [2020-04-10T12:22:37.840499+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:22:37.841693+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:22:38.453262+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"67810e"},"request_uri":"http://localhost:8000/_wdt/67810e","method":"GET"} [] [2020-04-10T12:22:40.662212+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:22:40.665223+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:22:40.989265+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"eebb7c"},"request_uri":"http://localhost:8000/_wdt/eebb7c","method":"GET"} [] [2020-04-10T12:22:49.690578+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:22:49.693317+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:22:50.250510+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dec5f1"},"request_uri":"http://localhost:8000/_wdt/dec5f1","method":"GET"} [] [2020-04-10T12:26:36.485556+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:26:36.490535+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T12:26:36.743386+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T12:26:36.748167+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T12:26:36.797799+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T12:26:37.736034+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c4094a"},"request_uri":"http://localhost:8000/_wdt/c4094a","method":"GET"} [] [2020-04-10T12:26:47.000099+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T12:26:47.002653+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:26:47.010604+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T12:26:47.011502+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T12:26:47.056339+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:26:47.057557+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:26:47.463449+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"95c099"},"request_uri":"http://localhost:8000/_wdt/95c099","method":"GET"} [] [2020-04-10T12:26:48.896491+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:26:48.904707+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:26:48.905453+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:26:48.905540+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:26:48.938775+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:26:48.940239+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:26:49.298431+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"41fd86"},"request_uri":"http://localhost:8000/_wdt/41fd86","method":"GET"} [] [2020-04-10T12:27:45.058876+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:27:45.060077+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:27:47.406987+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"39baff"},"request_uri":"http://localhost:8000/_wdt/39baff","method":"GET"} [] [2020-04-10T12:27:49.082619+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:27:49.098558+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:27:49.099641+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:27:49.099757+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/login"} [] [2020-04-10T12:27:49.158452+00:00] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET /login" (from "http://localhost:8000/admin/login")" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php line 136 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException(code: 0): No route found for \"GET /login\" (from \"http://localhost:8000/admin/login\") at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php:136)\n[previous exception] [object] (Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException(code: 0): No routes found for \"/login/\". at /Applications/MAMP/htdocs/Adeline/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70)"} [] [2020-04-10T12:27:49.705399+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"babe3f"},"request_uri":"http://localhost:8000/_wdt/babe3f","method":"GET"} [] [2020-04-10T12:28:02.272285+00:00] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET /login" (from "http://localhost:8000/admin/login")" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php line 136 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException(code: 0): No route found for \"GET /login\" (from \"http://localhost:8000/admin/login\") at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php:136)\n[previous exception] [object] (Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException(code: 0): No routes found for \"/login/\". at /Applications/MAMP/htdocs/Adeline/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70)"} [] [2020-04-10T12:28:02.512129+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"52ff9b"},"request_uri":"http://localhost:8000/_wdt/52ff9b","method":"GET"} [] [2020-04-10T12:28:06.127304+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T12:28:06.130257+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:28:06.136975+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T12:28:06.137205+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T12:28:06.187732+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:28:06.189307+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:28:06.711720+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ca0c10"},"request_uri":"http://localhost:8000/_wdt/ca0c10","method":"GET"} [] [2020-04-10T12:28:34.343013+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:28:34.353434+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdminAgenceOrphea065"] [] [2020-04-10T12:28:34.354439+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"AdminAgenceOrphea065\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:28:34.354560+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:28:34.392791+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:28:34.394509+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:28:34.776838+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6d1321"},"request_uri":"http://localhost:8000/_wdt/6d1321","method":"GET"} [] [2020-04-10T12:49:21.631525+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:49:21.650946+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:49:22.045468+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5da254"},"request_uri":"http://localhost:8000/_wdt/5da254","method":"GET"} [] [2020-04-10T12:49:25.847792+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:49:25.900732+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:49:25.914914+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:49:25.915073+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:49:25.964516+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:49:25.966193+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:49:26.141671+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"49b5dd"},"request_uri":"http://localhost:8000/_wdt/49b5dd","method":"GET"} [] [2020-04-10T12:49:29.357268+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T12:49:29.591051+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"61c46b"},"request_uri":"http://localhost:8000/_wdt/61c46b","method":"GET"} [] [2020-04-10T12:49:38.886968+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T12:49:38.893507+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:49:38.900324+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T12:49:38.900596+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T12:49:38.942229+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:49:38.943442+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:49:39.130808+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"decb38"},"request_uri":"http://localhost:8000/_wdt/decb38","method":"GET"} [] [2020-04-10T12:49:41.792037+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:49:41.800967+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdminAgenceOrphea065"] [] [2020-04-10T12:49:41.802364+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"AdminAgenceOrphea065\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:49:41.802594+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:49:41.840801+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:49:41.842974+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:49:42.031057+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c0f282"},"request_uri":"http://localhost:8000/_wdt/c0f282","method":"GET"} [] [2020-04-10T12:49:53.660077+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:49:53.674067+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T12:49:53.944116+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T12:49:53.946180+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T12:49:53.968366+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T12:49:54.133719+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5ff392"},"request_uri":"http://localhost:8000/_wdt/5ff392","method":"GET"} [] [2020-04-10T12:49:56.063928+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"5ff392"},"request_uri":"http://localhost:8000/_profiler/5ff392?panel=security","method":"GET"} [] [2020-04-10T12:49:56.084097+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=security","method":"GET"} [] [2020-04-10T12:56:45.366060+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T12:56:45.682292+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ce0bca"},"request_uri":"http://localhost:8000/_wdt/ce0bca","method":"GET"} [] [2020-04-10T12:57:09.761179+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T12:57:09.768540+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:57:09.776592+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T12:57:09.776839+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T12:57:09.833028+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:57:09.834820+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:57:10.015284+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c617ad"},"request_uri":"http://localhost:8000/_wdt/c617ad","method":"GET"} [] [2020-04-10T12:57:11.197355+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:57:11.212492+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:57:11.216473+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:57:11.216626+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:57:11.260110+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:57:11.262099+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:57:11.443370+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bfa560"},"request_uri":"http://localhost:8000/_wdt/bfa560","method":"GET"} [] [2020-04-10T12:57:16.925602+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:57:16.936210+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AurianeVuilliotAdmin"] [] [2020-04-10T12:57:16.937915+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"AurianeVuilliotAdmin\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:57:16.938121+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:57:16.971940+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:57:16.973703+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:57:17.149447+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a55807"},"request_uri":"http://localhost:8000/_wdt/a55807","method":"GET"} [] [2020-04-10T12:57:18.693311+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:57:18.701686+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T12:57:18.702868+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:57:18.703058+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:57:18.743722+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:57:18.744667+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:57:18.927950+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"59c335"},"request_uri":"http://localhost:8000/_wdt/59c335","method":"GET"} [] [2020-04-10T12:57:22.066991+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:57:22.079289+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["ee"] [] [2020-04-10T12:57:22.080731+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"ee\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T12:57:22.080906+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T12:57:22.121575+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T12:57:22.123386+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T12:57:22.309717+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"916fb5"},"request_uri":"http://localhost:8000/_wdt/916fb5","method":"GET"} [] [2020-04-10T12:57:30.099038+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T12:57:30.109569+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T12:57:30.400759+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T12:57:30.403147+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T12:57:30.427765+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T12:57:30.591187+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"32b850"},"request_uri":"http://localhost:8000/_wdt/32b850","method":"GET"} [] [2020-04-10T13:00:58.132380+00:00] php.DEBUG: Warning: include(/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"function":"include"}],"count":1}}} [] [2020-04-10T13:00:58.135705+00:00] php.DEBUG: Warning: include(): Failed opening '/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php' for inclusion (include_path='.:/usr/local/Cellar/php/7.3.4_1/share/php/pear') [] [] [2020-04-10T13:01:02.255963+00:00] php.DEBUG: Warning: file(/proc/mounts): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/framework-bundle/Command/CacheClearCommand.php","line":137,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Command/Command.php","line":255,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"}],"count":1}}} [] [2020-04-10T13:01:13.701963+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T13:01:14.183746+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6c2c11"},"request_uri":"http://localhost:8000/_wdt/6c2c11","method":"GET"} [] [2020-04-10T13:01:22.518184+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T13:01:22.558608+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:22.571549+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T13:01:22.572983+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T13:01:22.614388+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:22.615907+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:22.760132+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fbd427"},"request_uri":"http://localhost:8000/_wdt/fbd427","method":"GET"} [] [2020-04-10T13:01:23.990503+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:24.102843+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:24.116780+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:24.116913+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:24.154259+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:24.155901+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:24.342743+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"63b4b3"},"request_uri":"http://localhost:8000/_wdt/63b4b3","method":"GET"} [] [2020-04-10T13:01:25.883720+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:25.892573+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:25.894137+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:25.894517+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:25.931354+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:25.934781+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:26.121578+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8bae34"},"request_uri":"http://localhost:8000/_wdt/8bae34","method":"GET"} [] [2020-04-10T13:01:26.353076+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:26.363769+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:26.365802+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:26.365952+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:26.425565+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:26.428496+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:26.572918+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:26.583305+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:26.584728+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:26.584995+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:26.648214+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:26.650602+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:26.789705+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:26.802577+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:26.807471+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:26.807641+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:26.867319+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:26.872429+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:26.876183+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:26.876302+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:26.963999+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:26.966002+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:27.024492+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:01:27.033963+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:01:27.035149+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:01:27.035271+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:01:27.082751+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:01:27.085220+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:01:27.282446+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"80c256"},"request_uri":"http://localhost:8000/_wdt/80c256","method":"GET"} [] [2020-04-10T13:01:31.101657+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"80c256"},"request_uri":"http://localhost:8000/_profiler/80c256?panel=config","method":"GET"} [] [2020-04-10T13:01:31.129978+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=config","method":"GET"} [] [2020-04-10T13:02:48.699092+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:48.702774+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:49.730625+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"18f92b"},"request_uri":"http://localhost:8000/_wdt/18f92b","method":"GET"} [] [2020-04-10T13:02:50.842252+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:50.853186+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:50.855007+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:50.855242+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:50.901388+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:50.903308+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:51.085528+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e90ebd"},"request_uri":"http://localhost:8000/_wdt/e90ebd","method":"GET"} [] [2020-04-10T13:02:51.908652+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:51.917499+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:51.918762+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:51.919024+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:51.956356+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:51.966764+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:52.150780+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"39e61a"},"request_uri":"http://localhost:8000/_wdt/39e61a","method":"GET"} [] [2020-04-10T13:02:52.480092+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:52.487288+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:52.490045+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:52.490420+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:52.534116+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:52.536456+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:52.747624+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"58d682"},"request_uri":"http://localhost:8000/_wdt/58d682","method":"GET"} [] [2020-04-10T13:02:53.382129+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:53.387557+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:53.388412+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:53.388510+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:53.422543+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:53.424425+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:53.564569+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d0d54f"},"request_uri":"http://localhost:8000/_wdt/d0d54f","method":"GET"} [] [2020-04-10T13:02:53.911179+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:53.915772+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:53.916514+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:53.916612+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:53.957815+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:53.962096+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:54.055815+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.067324+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.068489+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.068670+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.120454+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:54.126417+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:54.222193+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.245108+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.249693+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.249877+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.296494+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:54.300696+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:54.391589+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.406410+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.418692+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.418873+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.479908+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.494361+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.495497+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.495731+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.546660+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.554052+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.555148+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.555292+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.613471+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:54.615297+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:54.649703+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.656808+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.657835+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.657979+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.722450+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:54.725865+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:54.758459+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:02:54.766310+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:02:54.767309+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:02:54.767456+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:02:54.835922+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:02:54.837766+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:02:55.114660+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"051ba5"},"request_uri":"http://localhost:8000/_wdt/051ba5","method":"GET"} [] [2020-04-10T13:03:50.433277+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:03:50.441432+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:03:50.442570+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:03:50.442712+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:03:50.472672+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:03:50.474449+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:03:50.651444+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"412a6b"},"request_uri":"http://localhost:8000/_wdt/412a6b","method":"GET"} [] [2020-04-10T13:03:56.917590+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:03:56.927631+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T13:03:56.928994+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:84)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): The presented password cannot be empty. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:55)"} [] [2020-04-10T13:03:56.929117+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:03:56.956576+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:03:56.958332+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:03:57.102109+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5a6aa7"},"request_uri":"http://localhost:8000/_wdt/5a6aa7","method":"GET"} [] [2020-04-10T13:04:43.096827+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:04:43.106130+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:04:43.107805+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:04:43.107999+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:04:43.139181+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:04:43.140428+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:04:43.298218+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"745dc9"},"request_uri":"http://localhost:8000/_wdt/745dc9","method":"GET"} [] [2020-04-10T13:04:44.203221+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:04:44.210125+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:04:44.211104+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:04:44.211224+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:04:44.241659+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:04:44.243404+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:04:44.397848+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fca5cb"},"request_uri":"http://localhost:8000/_wdt/fca5cb","method":"GET"} [] [2020-04-10T13:04:44.769759+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:04:44.779655+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:04:44.780860+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:04:44.781074+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:04:44.831472+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:04:44.834316+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:04:45.053129+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"30ee26"},"request_uri":"http://localhost:8000/_wdt/30ee26","method":"GET"} [] [2020-04-10T13:04:59.552982+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:04:59.566668+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T13:04:59.839451+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T13:04:59.844735+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:04:59.867561+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T13:05:00.034876+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"35b8d7"},"request_uri":"http://localhost:8000/_wdt/35b8d7","method":"GET"} [] [2020-04-10T13:09:58.949215+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T13:09:59.369657+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f039b4"},"request_uri":"http://localhost:8000/_wdt/f039b4","method":"GET"} [] [2020-04-10T13:10:03.809604+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T13:10:03.848166+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:10:03.859413+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T13:10:03.860692+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T13:10:03.903015+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:10:03.906356+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:10:04.028884+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"17841c"},"request_uri":"http://localhost:8000/_wdt/17841c","method":"GET"} [] [2020-04-10T13:10:05.356033+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:10:05.435349+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["NONE_PROVIDED"] [] [2020-04-10T13:10:05.455862+00:00] security.INFO: Authentication request failed. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException(code: 0): Bad credentials. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:67)\n[previous exception] [object] (Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException(code: 0): User \"NONE_PROVIDED\" not found. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:65)"} [] [2020-04-10T13:10:05.456013+00:00] security.DEBUG: Authentication failure, redirect triggered. {"failure_path":"/admin/login"} [] [2020-04-10T13:10:05.488927+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T13:10:05.490466+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T13:10:05.632906+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2b6003"},"request_uri":"http://localhost:8000/_wdt/2b6003","method":"GET"} [] [2020-04-10T13:11:07.644985+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-10T13:11:07.661067+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-10T13:11:07.921556+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-10T13:11:07.925363+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:11:07.949356+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T13:11:07.950614+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:11:07.957340+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:11:07.959054+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:11:08.009347+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.category_id AS category_id_5 FROM actuality t0 [] [] [2020-04-10T13:11:08.023843+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:11:08.239492+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6d11b1"},"request_uri":"http://localhost:8000/_wdt/6d11b1","method":"GET"} [] [2020-04-10T13:11:17.077079+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T13:11:17.079513+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:11:17.087268+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:11:17.088152+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:11:17.093255+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T13:11:17.101237+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:11:17.304786+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a336db"},"request_uri":"http://localhost:8000/_wdt/a336db","method":"GET"} [] [2020-04-10T13:11:19.935175+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"GET"} [] [2020-04-10T13:11:19.940137+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:11:19.944946+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:11:19.946143+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:11:20.055347+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:11:20.204909+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"127b46"},"request_uri":"http://localhost:8000/_wdt/127b46","method":"GET"} [] [2020-04-10T13:11:23.537619+00:00] request.INFO: Matched route "admin.category.new". {"route":"admin.category.new","route_parameters":{"_route":"admin.category.new","_controller":"App\\Controller\\Admin\\AdminCategoryController::new"},"request_uri":"http://localhost:8000/admin/categories/new","method":"POST"} [] [2020-04-10T13:11:23.540796+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:11:23.546139+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:11:23.547047+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:11:23.765067+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:11:23.767187+00:00] doctrine.DEBUG: INSERT INTO category (name) VALUES (?) {"1":"Bilan"} [] [2020-04-10T13:11:23.770013+00:00] doctrine.DEBUG: "COMMIT" [] [] [2020-04-10T13:11:23.776324+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:11:23.805896+00:00] request.INFO: Matched route "admin.category.index". {"route":"admin.category.index","route_parameters":{"_route":"admin.category.index","_controller":"App\\Controller\\Admin\\AdminCategoryController::index"},"request_uri":"http://localhost:8000/admin/categories","method":"GET"} [] [2020-04-10T13:11:23.807123+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:11:23.810559+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:11:23.811347+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:11:23.813771+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 [] [] [2020-04-10T13:11:23.823514+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:11:23.995070+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f26fd5"},"request_uri":"http://localhost:8000/_wdt/f26fd5","method":"GET"} [] [2020-04-10T13:23:25.301251+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T13:23:25.306065+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:25.316403+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:25.319853+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:25.324313+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T13:23:25.327523+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T13:23:25.328486+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'actuality' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:25.329178+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'actuality' */ WHERE k.table_name = 'actuality' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:25.330604+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'actuality' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:25.331143+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'actuality' [] [] [2020-04-10T13:23:25.331518+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'category' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:25.332037+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'category' */ WHERE k.table_name = 'category' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:25.332483+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'category' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:25.332799+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'category' [] [] [2020-04-10T13:23:25.333110+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:25.333800+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:25.334207+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:25.334576+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T13:23:25.334901+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'pictures' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:25.336477+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'pictures' */ WHERE k.table_name = 'pictures' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:25.339255+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'pictures' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:25.339703+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'pictures' [] [] [2020-04-10T13:23:25.340012+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'user' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:25.340548+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'user' */ WHERE k.table_name = 'user' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:25.341096+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'user' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:25.341410+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'user' [] [] [2020-04-10T13:23:36.074725+00:00] doctrine.DEBUG: SHOW FULL TABLES WHERE Table_type = 'BASE TABLE' [] [] [2020-04-10T13:23:36.076699+00:00] doctrine.DEBUG: SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'adeline' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC [] [] [2020-04-10T13:23:36.083447+00:00] doctrine.DEBUG: SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.constraint_name = k.constraint_name AND c.table_name = 'migration_versions' */ WHERE k.table_name = 'migration_versions' AND k.table_schema = 'adeline' /*!50116 AND c.constraint_schema = 'adeline' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL [] [] [2020-04-10T13:23:36.084126+00:00] doctrine.DEBUG: SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'adeline' ORDER BY SEQ_IN_INDEX ASC [] [] [2020-04-10T13:23:36.086070+00:00] doctrine.DEBUG: SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions' [] [] [2020-04-10T13:23:36.088923+00:00] doctrine.DEBUG: SELECT version FROM migration_versions [] [] [2020-04-10T13:23:37.134571+00:00] doctrine.DEBUG: SELECT version FROM migration_versions WHERE version IN ('20200410065820', '20200410094402', '20200410132325') ORDER BY version DESC LIMIT 1 [] [] [2020-04-10T13:23:37.138149+00:00] doctrine.DEBUG: SELECT version FROM migration_versions [] [] [2020-04-10T13:23:37.145194+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:23:37.223609+00:00] doctrine.DEBUG: ALTER TABLE actuality ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL [] [] [2020-04-10T13:23:37.251819+00:00] doctrine.DEBUG: INSERT INTO migration_versions (version, executed_at) VALUES (?, ?) ["20200410132325","2020-04-10 13:23:37"] [] [2020-04-10T13:23:37.254268+00:00] doctrine.DEBUG: "COMMIT" [] [] [2020-04-10T13:28:10.289672+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:28:10.292315+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:28:10.301097+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:28:10.302133+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:28:10.329875+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\Common\Annotations\AnnotationException: "[Semantical Error] The annotation "@Assert\All" in property App\Entity\Actuality::$pictureFiles was never imported. Did you maybe forget to add a "use" statement for this annotation?" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php line 54 {"exception":"[object] (Doctrine\\Common\\Annotations\\AnnotationException(code: 0): [Semantical Error] The annotation \"@Assert\\All\" in property App\\Entity\\Actuality::$pictureFiles was never imported. Did you maybe forget to add a \"use\" statement for this annotation? at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php:54)"} [] [2020-04-10T13:28:10.560196+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:28:10.897270+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"57d2f5"},"request_uri":"http://localhost:8000/_wdt/57d2f5","method":"GET"} [] [2020-04-10T13:28:36.178931+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:28:36.181996+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:28:36.190674+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:28:36.191814+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:28:36.240007+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:28:36.248270+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:28:36.456151+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"231ec6"},"request_uri":"http://localhost:8000/_wdt/231ec6","method":"GET"} [] [2020-04-10T13:29:22.978299+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T13:29:22.982886+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:29:22.994348+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:29:22.995209+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:29:23.093367+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T13:29:23.242962+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:29:23.465325+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"74956d"},"request_uri":"http://localhost:8000/_wdt/74956d","method":"GET"} [] [2020-04-10T13:29:50.345614+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T13:29:50.348117+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:29:50.356497+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:29:50.357348+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:29:50.366427+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T13:29:50.389705+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:29:50.623735+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3fbf35"},"request_uri":"http://localhost:8000/_wdt/3fbf35","method":"GET"} [] [2020-04-10T13:29:58.420569+00:00] request.INFO: Matched route "_profiler". {"route":"_profiler","route_parameters":{"_route":"_profiler","_controller":"web_profiler.controller.profiler::panelAction","token":"3fbf35"},"request_uri":"http://localhost:8000/_profiler/3fbf35?panel=config","method":"GET"} [] [2020-04-10T13:29:58.454362+00:00] request.INFO: Matched route "_profiler_search_bar". {"route":"_profiler_search_bar","route_parameters":{"_route":"_profiler_search_bar","_controller":"web_profiler.controller.profiler::searchBarAction"},"request_uri":"http://localhost:8000/_profiler/search_bar?panel=config","method":"GET"} [] [2020-04-10T13:30:34.953717+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T13:30:34.957336+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:30:34.964647+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:30:34.965495+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:30:34.993971+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ WHERE c0_.id IN (?) [["1"]] [] [2020-04-10T13:30:35.199910+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:30:35.202608+00:00] doctrine.DEBUG: INSERT INTO actuality (title, sub_title, texte, created_at, updated_at, category_id) VALUES (?, ?, ?, ?, ?, ?) {"1":"Test","2":"Test de l'ajout","3":"Ceci est une actu","4":"2020-04-10T13:30:34+00:00","5":"2020-04-10T13:30:34+00:00","6":1} [] [2020-04-10T13:30:35.204003+00:00] doctrine.DEBUG: INSERT INTO pictures (filename, actuality_id) VALUES (?, ?) {"1":null,"2":1} [] [2020-04-10T13:30:35.211893+00:00] doctrine.DEBUG: "ROLLBACK" [] [] [2020-04-10T13:30:35.215562+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\DBAL\Exception\NotNullConstraintViolationException: "An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 1]: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 103 {"exception":"[object] (Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException(code: 0): An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 1]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:123)\n[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:121)"} [] [2020-04-10T13:30:35.406009+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:30:36.003523+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"382881"},"request_uri":"http://localhost:8000/_wdt/382881","method":"GET"} [] [2020-04-10T13:31:10.090809+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T13:31:10.092853+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:31:10.099048+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:31:10.100351+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:31:10.112491+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ WHERE c0_.id IN (?) [["1"]] [] [2020-04-10T13:31:10.155355+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:31:10.155858+00:00] doctrine.DEBUG: INSERT INTO actuality (title, sub_title, texte, created_at, updated_at, category_id) VALUES (?, ?, ?, ?, ?, ?) {"1":"Test","2":"Test de l'ajout","3":"Ceci est une actu","4":"2020-04-10T13:31:10+00:00","5":"2020-04-10T13:31:10+00:00","6":1} [] [2020-04-10T13:31:10.156544+00:00] doctrine.DEBUG: INSERT INTO pictures (filename, actuality_id) VALUES (?, ?) {"1":null,"2":2} [] [2020-04-10T13:31:10.157432+00:00] doctrine.DEBUG: "ROLLBACK" [] [] [2020-04-10T13:31:10.160417+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\DBAL\Exception\NotNullConstraintViolationException: "An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 2]: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 103 {"exception":"[object] (Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException(code: 0): An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 2]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:123)\n[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:121)"} [] [2020-04-10T13:31:10.336687+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:31:10.807302+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"11fcc8"},"request_uri":"http://localhost:8000/_wdt/11fcc8","method":"GET"} [] [2020-04-10T13:31:20.282293+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T13:31:20.285352+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:31:20.294277+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:31:20.295306+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:31:20.308491+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ WHERE c0_.id IN (?) [["1"]] [] [2020-04-10T13:31:20.339584+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:31:20.340176+00:00] doctrine.DEBUG: INSERT INTO actuality (title, sub_title, texte, created_at, updated_at, category_id) VALUES (?, ?, ?, ?, ?, ?) {"1":"Test","2":"Test de l'ajout","3":"Ceci est une actu","4":"2020-04-10T13:31:20+00:00","5":"2020-04-10T13:31:20+00:00","6":1} [] [2020-04-10T13:31:20.340840+00:00] doctrine.DEBUG: INSERT INTO pictures (filename, actuality_id) VALUES (?, ?) {"1":null,"2":3} [] [2020-04-10T13:31:20.341473+00:00] doctrine.DEBUG: "ROLLBACK" [] [] [2020-04-10T13:31:20.345010+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\DBAL\Exception\NotNullConstraintViolationException: "An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 3]: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 103 {"exception":"[object] (Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException(code: 0): An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 3]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:123)\n[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:121)"} [] [2020-04-10T13:31:20.509492+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:31:20.903854+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"502d83"},"request_uri":"http://localhost:8000/_wdt/502d83","method":"GET"} [] [2020-04-10T13:31:43.536848+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T13:31:43.538667+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:31:43.543855+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:31:43.544739+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:31:43.556162+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ WHERE c0_.id IN (?) [["1"]] [] [2020-04-10T13:31:43.589165+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:31:43.589720+00:00] doctrine.DEBUG: INSERT INTO actuality (title, sub_title, texte, created_at, updated_at, category_id) VALUES (?, ?, ?, ?, ?, ?) {"1":"Test","2":"Test de l'ajout","3":"Ceci est une actu","4":"2020-04-10T13:31:43+00:00","5":"2020-04-10T13:31:43+00:00","6":1} [] [2020-04-10T13:31:43.590387+00:00] doctrine.DEBUG: INSERT INTO pictures (filename, actuality_id) VALUES (?, ?) {"1":null,"2":4} [] [2020-04-10T13:31:43.591013+00:00] doctrine.DEBUG: "ROLLBACK" [] [] [2020-04-10T13:31:43.594157+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\DBAL\Exception\NotNullConstraintViolationException: "An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 4]: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 103 {"exception":"[object] (Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException(code: 0): An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 4]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:123)\n[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:121)"} [] [2020-04-10T13:31:43.762941+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:31:44.225914+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"391769"},"request_uri":"http://localhost:8000/_wdt/391769","method":"GET"} [] [2020-04-10T13:31:51.164678+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:31:51.168166+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:31:51.175835+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:31:51.176673+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:31:51.180187+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:31:51.185681+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:31:53.084234+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"39a1ab"},"request_uri":"http://localhost:8000/_wdt/39a1ab","method":"GET"} [] [2020-04-10T13:32:04.432399+00:00] console.ERROR: Error thrown while running command "'cache:cmear'". Message: "Command "cache:cmear" is not defined. Did you mean one of these? cache:clear cache:pool:clear cache:pool:delete cache:pool:list cache:pool:prune cache:warmup" {"exception":"[object] (Symfony\\Component\\Console\\Exception\\CommandNotFoundException(code: 0): Command \"cache:cmear\" is not defined.\n\nDid you mean one of these?\n cache:clear\n cache:pool:clear\n cache:pool:delete\n cache:pool:list\n cache:pool:prune\n cache:warmup at /Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Application.php:644)","command":"'cache:cmear'","message":"Command \"cache:cmear\" is not defined.\n\nDid you mean one of these?\n cache:clear\n cache:pool:clear\n cache:pool:delete\n cache:pool:list\n cache:pool:prune\n cache:warmup"} [] [2020-04-10T13:32:07.397460+00:00] php.DEBUG: Warning: include(/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"function":"include"}],"count":1}}} [] [2020-04-10T13:32:07.399525+00:00] php.DEBUG: Warning: include(): Failed opening '/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php' for inclusion (include_path='.:/usr/local/Cellar/php/7.3.4_1/share/php/pear') [] [] [2020-04-10T13:32:11.943648+00:00] php.DEBUG: Warning: file(/proc/mounts): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/framework-bundle/Command/CacheClearCommand.php","line":137,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Command/Command.php","line":255,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"}],"count":1}}} [] [2020-04-10T13:32:36.474456+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:32:36.477089+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:32:36.495046+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:32:36.495903+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:32:36.535532+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:32:36.545838+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:32:36.870149+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f0af65"},"request_uri":"http://localhost:8000/_wdt/f0af65","method":"GET"} [] [2020-04-10T13:32:37.955417+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"GET"} [] [2020-04-10T13:32:37.957259+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:32:37.963534+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:32:37.964582+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:32:37.981437+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-10T13:32:38.031513+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:32:38.457661+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"637937"},"request_uri":"http://localhost:8000/_wdt/637937","method":"GET"} [] [2020-04-10T13:32:47.378124+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T13:32:47.380737+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:32:47.388735+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:32:47.389484+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:32:47.399841+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ WHERE c0_.id IN (?) [["1"]] [] [2020-04-10T13:32:47.640657+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:32:47.641331+00:00] doctrine.DEBUG: INSERT INTO actuality (title, sub_title, texte, created_at, updated_at, category_id) VALUES (?, ?, ?, ?, ?, ?) {"1":"Test","2":"Test de l'ajout","3":"zzzzazeaze aze a","4":"2020-04-10T13:32:47+00:00","5":"2020-04-10T13:32:47+00:00","6":1} [] [2020-04-10T13:32:47.642251+00:00] doctrine.DEBUG: INSERT INTO pictures (filename, actuality_id) VALUES (?, ?) {"1":null,"2":5} [] [2020-04-10T13:32:47.643813+00:00] doctrine.DEBUG: "ROLLBACK" [] [] [2020-04-10T13:32:47.651307+00:00] request.CRITICAL: Uncaught PHP Exception Doctrine\DBAL\Exception\NotNullConstraintViolationException: "An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 5]: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null" at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 103 {"exception":"[object] (Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException(code: 0): An exception occurred while executing 'INSERT INTO pictures (filename, actuality_id) VALUES (?, ?)' with params [null, 5]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103)\n[previous exception] [object] (Doctrine\\DBAL\\Driver\\PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:123)\n[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'filename' cannot be null at /Applications/MAMP/htdocs/Adeline/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:121)"} [] [2020-04-10T13:32:47.888802+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:32:48.391695+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"22508b"},"request_uri":"http://localhost:8000/_wdt/22508b","method":"GET"} [] [2020-04-10T13:38:00.920892+00:00] request.INFO: Matched route "admin.actuality.new". {"route":"admin.actuality.new","route_parameters":{"_route":"admin.actuality.new","_controller":"App\\Controller\\Admin\\AdminActualityController::new"},"request_uri":"http://localhost:8000/admin/actualites/new","method":"POST"} [] [2020-04-10T13:38:00.923431+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:38:00.930612+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:38:00.931464+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:38:00.942093+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ WHERE c0_.id IN (?) [["1"]] [] [2020-04-10T13:38:01.018701+00:00] doctrine.DEBUG: "START TRANSACTION" [] [] [2020-04-10T13:38:01.019219+00:00] doctrine.DEBUG: INSERT INTO actuality (title, sub_title, texte, created_at, updated_at, category_id) VALUES (?, ?, ?, ?, ?, ?) {"1":"Test","2":"Test de l'ajout","3":"zzzzazeaze aze a","4":"2020-04-10T13:38:00+00:00","5":"2020-04-10T13:38:00+00:00","6":1} [] [2020-04-10T13:38:01.020154+00:00] doctrine.DEBUG: INSERT INTO pictures (filename, actuality_id) VALUES (?, ?) {"1":"5e9076b901f6e047133446.jpg","2":6} [] [2020-04-10T13:38:01.024307+00:00] doctrine.DEBUG: "COMMIT" [] [] [2020-04-10T13:38:01.030387+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:38:01.113665+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:38:01.119273+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:38:01.124548+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:38:01.125523+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:38:01.130578+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:38:01.144684+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\RuntimeError: "Neither the property "name" nor one of the methods "name()", "getname()"/"isname()"/"hasname()" or "__call()" exist and have public access in class "App\Entity\Actuality"." at /Applications/MAMP/htdocs/Adeline/templates/admin/actuality/index.html.twig line 22 {"exception":"[object] (Twig\\Error\\RuntimeError(code: 0): Neither the property \"name\" nor one of the methods \"name()\", \"getname()\"/\"isname()\"/\"hasname()\" or \"__call()\" exist and have public access in class \"App\\Entity\\Actuality\". at /Applications/MAMP/htdocs/Adeline/templates/admin/actuality/index.html.twig:22)"} [] [2020-04-10T13:38:01.179775+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:38:01.326103+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e02c5a"},"request_uri":"http://localhost:8000/_wdt/e02c5a","method":"GET"} [] [2020-04-10T13:38:17.738565+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:38:17.741345+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:38:17.749656+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:38:17.750578+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:38:17.755737+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:38:17.779689+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:38:18.043311+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ac5ab7"},"request_uri":"http://localhost:8000/_wdt/ac5ab7","method":"GET"} [] [2020-04-10T13:39:02.366466+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:39:02.368946+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:39:02.378053+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:39:02.379305+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:39:02.384267+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:39:02.400304+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:39:02.416776+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\RuntimeError: "Variable "actulity" does not exist." at /Applications/MAMP/htdocs/Adeline/templates/admin/actuality/index.html.twig line 21 {"exception":"[object] (Twig\\Error\\RuntimeError(code: 0): Variable \"actulity\" does not exist. at /Applications/MAMP/htdocs/Adeline/templates/admin/actuality/index.html.twig:21)"} [] [2020-04-10T13:39:02.474457+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:39:02.722969+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9b0075"},"request_uri":"http://localhost:8000/_wdt/9b0075","method":"GET"} [] [2020-04-10T13:39:10.092496+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:39:10.096141+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:39:10.104938+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:39:10.105668+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:39:10.109941+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:39:10.123618+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:39:10.129656+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:39:10.362211+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d74bdf"},"request_uri":"http://localhost:8000/_wdt/d74bdf","method":"GET"} [] [2020-04-10T13:40:27.522774+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:40:27.524683+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:40:27.532342+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:40:27.533902+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:40:27.537070+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:40:27.547090+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:40:27.551575+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:40:28.235025+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ba4c19"},"request_uri":"http://localhost:8000/_wdt/ba4c19","method":"GET"} [] [2020-04-10T13:40:38.776873+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:40:38.777989+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:40:38.781712+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:40:38.782622+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:40:38.785319+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:40:38.793499+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:40:38.796639+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:40:39.208888+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e2044e"},"request_uri":"http://localhost:8000/_wdt/e2044e","method":"GET"} [] [2020-04-10T13:40:53.354879+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:40:53.356189+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:40:53.359971+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:40:53.360796+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:40:53.365340+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:40:53.371906+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:40:53.376793+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:40:56.402151+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e1e3af"},"request_uri":"http://localhost:8000/_wdt/e1e3af","method":"GET"} [] [2020-04-10T13:41:23.830656+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:41:23.833255+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:41:23.841298+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:41:23.842675+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:41:23.848371+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:41:23.864238+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:41:23.865768+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T13:41:23.868640+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:41:24.232340+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1f249a"},"request_uri":"http://localhost:8000/_wdt/1f249a","method":"GET"} [] [2020-04-10T13:59:40.033663+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:59:40.049756+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:59:40.104820+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:40.133469+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:59:40.144922+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:59:40.175888+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:59:40.182064+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:40.213817+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:59:40.645513+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"57725e"},"request_uri":"http://localhost:8000/_wdt/57725e","method":"GET"} [] [2020-04-10T13:59:47.907410+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:59:47.912769+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:59:47.927043+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:47.929904+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:59:47.937365+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:59:47.950810+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:59:47.954501+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:47.960409+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:59:48.171464+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a80aa9"},"request_uri":"http://localhost:8000/_wdt/a80aa9","method":"GET"} [] [2020-04-10T13:59:49.153519+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:59:49.155601+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:59:49.162187+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:49.165332+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:59:49.168772+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:59:49.202302+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:59:49.205077+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:49.208048+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:59:49.687539+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fba850"},"request_uri":"http://localhost:8000/_wdt/fba850","method":"GET"} [] [2020-04-10T13:59:51.115592+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T13:59:51.118722+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T13:59:51.127025+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:51.128777+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T13:59:51.133786+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T13:59:51.141179+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T13:59:51.142879+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T13:59:51.149203+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T13:59:51.539784+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"97cae4"},"request_uri":"http://localhost:8000/_wdt/97cae4","method":"GET"} [] [2020-04-10T14:00:32.781568+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T14:00:32.784050+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T14:00:32.792902+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T14:00:32.795527+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T14:00:32.800065+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T14:00:32.806698+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T14:00:32.808138+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T14:00:32.812045+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T14:00:33.087411+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"256054"},"request_uri":"http://localhost:8000/_wdt/256054","method":"GET"} [] [2020-04-10T14:00:40.183301+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T14:00:40.187082+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T14:00:40.195965+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T14:00:40.196934+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T14:00:40.201349+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T14:00:40.210238+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T14:00:40.211449+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T14:00:40.214903+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T14:00:40.447109+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d35f58"},"request_uri":"http://localhost:8000/_wdt/d35f58","method":"GET"} [] [2020-04-10T14:08:27.926473+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T14:08:27.937663+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T14:08:27.966266+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T14:08:27.973331+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T14:08:27.985002+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T14:08:28.028931+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T14:08:28.033050+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T14:08:28.101615+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T14:08:28.617486+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e6f02e"},"request_uri":"http://localhost:8000/_wdt/e6f02e","method":"GET"} [] [2020-04-10T14:08:42.742264+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-10T14:08:42.745545+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T14:08:42.755106+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T14:08:42.757680+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T14:08:42.764474+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-10T14:08:42.787291+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-10T14:08:42.789314+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-10T14:08:42.793283+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-10T14:08:43.288696+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9abd95"},"request_uri":"http://localhost:8000/_wdt/9abd95","method":"GET"} [] [2020-04-10T14:11:31.397689+00:00] request.INFO: Matched route "logout". {"route":"logout","route_parameters":{"_route":"logout"},"request_uri":"http://localhost:8000/admin/logout","method":"GET"} [] [2020-04-10T14:11:31.404182+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-10T14:11:31.418254+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-10T14:11:31.419343+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-10T14:11:31.459897+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-10T14:11:31.825026+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"42bc3f"},"request_uri":"http://localhost:8000/_wdt/42bc3f","method":"GET"} [] [2020-04-10T14:26:46.164945+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-10T14:26:46.178219+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T14:26:46.191580+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-10T14:26:46.191993+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-10T14:26:46.235619+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T14:26:46.237752+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T14:26:46.542126+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"192ddf"},"request_uri":"http://localhost:8000/_wdt/192ddf","method":"GET"} [] [2020-04-10T14:27:08.909436+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T14:27:08.912151+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T14:27:09.144290+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7d8fda"},"request_uri":"http://localhost:8000/_wdt/7d8fda","method":"GET"} [] [2020-04-10T14:27:20.482334+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T14:27:20.487702+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T14:27:20.814169+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"807eb1"},"request_uri":"http://localhost:8000/_wdt/807eb1","method":"GET"} [] [2020-04-10T14:38:01.712468+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T14:38:01.719191+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T14:38:02.449957+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7ac4c3"},"request_uri":"http://localhost:8000/_wdt/7ac4c3","method":"GET"} [] [2020-04-10T14:38:11.765027+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-10T14:38:11.768507+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-10T14:38:12.045250+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"733ba9"},"request_uri":"http://localhost:8000/_wdt/733ba9","method":"GET"} [] [2020-04-14T07:25:10.263010+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T07:25:10.923407+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"15c6a4"},"request_uri":"http://localhost:8000/_wdt/15c6a4","method":"GET"} [] [2020-04-14T08:12:32.690462+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T08:12:36.862455+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cd20be"},"request_uri":"http://localhost:8000/_wdt/cd20be","method":"GET"} [] [2020-04-14T08:20:00.002164+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T08:20:00.629897+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5f5845"},"request_uri":"http://localhost:8000/_wdt/5f5845","method":"GET"} [] [2020-04-14T08:20:02.746329+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T08:20:05.942068+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ecc12d"},"request_uri":"http://localhost:8000/_wdt/ecc12d","method":"GET"} [] [2020-04-14T08:21:32.188996+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T08:21:32.742623+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5c1ddd"},"request_uri":"http://localhost:8000/_wdt/5c1ddd","method":"GET"} [] [2020-04-14T08:23:26.877442+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T08:23:27.667068+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"38d3cf"},"request_uri":"http://localhost:8000/_wdt/38d3cf","method":"GET"} [] [2020-04-14T09:06:19.217827+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:06:19.912885+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0e8604"},"request_uri":"http://localhost:8000/_wdt/0e8604","method":"GET"} [] [2020-04-14T09:07:24.327499+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:07:24.753378+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e73174"},"request_uri":"http://localhost:8000/_wdt/e73174","method":"GET"} [] [2020-04-14T09:07:59.322835+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:07:59.861963+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5084e1"},"request_uri":"http://localhost:8000/_wdt/5084e1","method":"GET"} [] [2020-04-14T09:08:01.567997+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:08:02.252041+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"559bfc"},"request_uri":"http://localhost:8000/_wdt/559bfc","method":"GET"} [] [2020-04-14T09:09:33.912184+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:09:34.569538+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"42b0d6"},"request_uri":"http://localhost:8000/_wdt/42b0d6","method":"GET"} [] [2020-04-14T09:09:54.520585+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:09:55.115952+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bb0852"},"request_uri":"http://localhost:8000/_wdt/bb0852","method":"GET"} [] [2020-04-14T09:09:55.788574+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:09:56.242534+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c00db3"},"request_uri":"http://localhost:8000/_wdt/c00db3","method":"GET"} [] [2020-04-14T09:10:04.251803+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:10:04.624973+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9bb887"},"request_uri":"http://localhost:8000/_wdt/9bb887","method":"GET"} [] [2020-04-14T09:10:50.382652+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:10:51.372225+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7b2566"},"request_uri":"http://localhost:8000/_wdt/7b2566","method":"GET"} [] [2020-04-14T09:10:53.531231+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:10:54.073918+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2e34f6"},"request_uri":"http://localhost:8000/_wdt/2e34f6","method":"GET"} [] [2020-04-14T09:11:10.466114+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:11:11.052613+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"31b4b1"},"request_uri":"http://localhost:8000/_wdt/31b4b1","method":"GET"} [] [2020-04-14T09:11:42.099432+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:11:42.642425+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"69e47d"},"request_uri":"http://localhost:8000/_wdt/69e47d","method":"GET"} [] [2020-04-14T09:11:55.544347+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:11:56.194156+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"11d364"},"request_uri":"http://localhost:8000/_wdt/11d364","method":"GET"} [] [2020-04-14T09:14:23.692183+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:14:24.232815+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ea8f26"},"request_uri":"http://localhost:8000/_wdt/ea8f26","method":"GET"} [] [2020-04-14T09:14:55.910053+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:14:56.380571+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"179e1f"},"request_uri":"http://localhost:8000/_wdt/179e1f","method":"GET"} [] [2020-04-14T09:15:51.448152+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:15:52.134201+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b36c0b"},"request_uri":"http://localhost:8000/_wdt/b36c0b","method":"GET"} [] [2020-04-14T09:16:38.351086+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:16:38.877625+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fd7c86"},"request_uri":"http://localhost:8000/_wdt/fd7c86","method":"GET"} [] [2020-04-14T09:16:48.610315+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:16:49.140980+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ca6657"},"request_uri":"http://localhost:8000/_wdt/ca6657","method":"GET"} [] [2020-04-14T09:17:20.889330+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:17:21.335511+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b28408"},"request_uri":"http://localhost:8000/_wdt/b28408","method":"GET"} [] [2020-04-14T09:17:36.200146+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:17:36.843394+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"21c8c2"},"request_uri":"http://localhost:8000/_wdt/21c8c2","method":"GET"} [] [2020-04-14T09:17:56.703941+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:17:57.164498+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3a867c"},"request_uri":"http://localhost:8000/_wdt/3a867c","method":"GET"} [] [2020-04-14T09:19:43.992513+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:19:44.520658+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"05618e"},"request_uri":"http://localhost:8000/_wdt/05618e","method":"GET"} [] [2020-04-14T09:20:22.743353+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:20:23.800962+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2ec462"},"request_uri":"http://localhost:8000/_wdt/2ec462","method":"GET"} [] [2020-04-14T09:21:32.318796+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:21:32.890823+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6697fb"},"request_uri":"http://localhost:8000/_wdt/6697fb","method":"GET"} [] [2020-04-14T09:21:41.600880+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:21:42.124122+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"913ff2"},"request_uri":"http://localhost:8000/_wdt/913ff2","method":"GET"} [] [2020-04-14T09:22:00.564449+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:22:01.194492+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8a1423"},"request_uri":"http://localhost:8000/_wdt/8a1423","method":"GET"} [] [2020-04-14T09:22:02.547080+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:22:03.083188+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"06c2b7"},"request_uri":"http://localhost:8000/_wdt/06c2b7","method":"GET"} [] [2020-04-14T09:22:30.172318+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:22:31.152485+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8e0857"},"request_uri":"http://localhost:8000/_wdt/8e0857","method":"GET"} [] [2020-04-14T09:22:32.907226+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:22:34.213169+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4d8930"},"request_uri":"http://localhost:8000/_wdt/4d8930","method":"GET"} [] [2020-04-14T09:25:46.008309+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:25:46.670904+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"181374"},"request_uri":"http://localhost:8000/_wdt/181374","method":"GET"} [] [2020-04-14T09:27:21.149203+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:27:21.946589+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"72203d"},"request_uri":"http://localhost:8000/_wdt/72203d","method":"GET"} [] [2020-04-14T09:27:35.162576+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:27:35.674097+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"51d805"},"request_uri":"http://localhost:8000/_wdt/51d805","method":"GET"} [] [2020-04-14T09:33:16.929392+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:33:17.622946+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"249529"},"request_uri":"http://localhost:8000/_wdt/249529","method":"GET"} [] [2020-04-14T09:33:32.675342+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:33:33.125733+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"32bdf0"},"request_uri":"http://localhost:8000/_wdt/32bdf0","method":"GET"} [] [2020-04-14T09:33:55.826392+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:33:56.327791+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"331b38"},"request_uri":"http://localhost:8000/_wdt/331b38","method":"GET"} [] [2020-04-14T09:34:52.034122+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:34:52.652014+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"db57bf"},"request_uri":"http://localhost:8000/_wdt/db57bf","method":"GET"} [] [2020-04-14T09:36:01.264203+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:36:01.928107+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"64cb2f"},"request_uri":"http://localhost:8000/_wdt/64cb2f","method":"GET"} [] [2020-04-14T09:37:50.878204+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:37:51.766849+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"31b17e"},"request_uri":"http://localhost:8000/_wdt/31b17e","method":"GET"} [] [2020-04-14T09:40:04.234971+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:40:05.163662+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f9a7cc"},"request_uri":"http://localhost:8000/_wdt/f9a7cc","method":"GET"} [] [2020-04-14T09:40:26.888401+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:40:27.604697+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"56517f"},"request_uri":"http://localhost:8000/_wdt/56517f","method":"GET"} [] [2020-04-14T09:55:42.487128+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:55:43.652102+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e38ae8"},"request_uri":"http://localhost:8000/_wdt/e38ae8","method":"GET"} [] [2020-04-14T09:56:05.655673+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:56:06.209543+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"93219a"},"request_uri":"http://localhost:8000/_wdt/93219a","method":"GET"} [] [2020-04-14T09:56:12.415895+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:56:12.905417+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1106f4"},"request_uri":"http://localhost:8000/_wdt/1106f4","method":"GET"} [] [2020-04-14T09:56:14.363820+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:56:15.099708+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c9ab3c"},"request_uri":"http://localhost:8000/_wdt/c9ab3c","method":"GET"} [] [2020-04-14T09:56:15.676858+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:56:16.194188+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cbcd51"},"request_uri":"http://localhost:8000/_wdt/cbcd51","method":"GET"} [] [2020-04-14T09:56:17.069926+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:56:17.848796+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9cafa7"},"request_uri":"http://localhost:8000/_wdt/9cafa7","method":"GET"} [] [2020-04-14T09:57:47.252857+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:57:47.684140+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cd75e3"},"request_uri":"http://localhost:8000/_wdt/cd75e3","method":"GET"} [] [2020-04-14T09:57:49.985839+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:57:50.367874+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f654a3"},"request_uri":"http://localhost:8000/_wdt/f654a3","method":"GET"} [] [2020-04-14T09:57:51.434666+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:57:51.860761+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"91dd94"},"request_uri":"http://localhost:8000/_wdt/91dd94","method":"GET"} [] [2020-04-14T09:57:53.055070+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:57:53.386208+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:57:53.502174+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f766b1"},"request_uri":"http://localhost:8000/_wdt/f766b1","method":"GET"} [] [2020-04-14T09:57:53.899716+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"824e0a"},"request_uri":"http://localhost:8000/_wdt/824e0a","method":"GET"} [] [2020-04-14T09:58:04.781329+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:58:05.221388+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b5d9de"},"request_uri":"http://localhost:8000/_wdt/b5d9de","method":"GET"} [] [2020-04-14T09:58:05.822274+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:58:06.411395+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"60938e"},"request_uri":"http://localhost:8000/_wdt/60938e","method":"GET"} [] [2020-04-14T09:58:07.471821+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:58:08.034164+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"09c05c"},"request_uri":"http://localhost:8000/_wdt/09c05c","method":"GET"} [] [2020-04-14T09:58:28.342455+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T09:58:28.778899+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c9049f"},"request_uri":"http://localhost:8000/_wdt/c9049f","method":"GET"} [] [2020-04-14T10:01:46.487142+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:01:47.403918+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d6a648"},"request_uri":"http://localhost:8000/_wdt/d6a648","method":"GET"} [] [2020-04-14T10:05:06.478076+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:05:07.365054+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b5c049"},"request_uri":"http://localhost:8000/_wdt/b5c049","method":"GET"} [] [2020-04-14T10:05:14.376227+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:05:15.218731+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d5dbd9"},"request_uri":"http://localhost:8000/_wdt/d5dbd9","method":"GET"} [] [2020-04-14T10:08:51.716170+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:08:52.324684+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f76985"},"request_uri":"http://localhost:8000/_wdt/f76985","method":"GET"} [] [2020-04-14T10:20:09.497512+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:20:10.449738+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f8e963"},"request_uri":"http://localhost:8000/_wdt/f8e963","method":"GET"} [] [2020-04-14T10:21:11.856947+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:21:12.476545+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"adb71b"},"request_uri":"http://localhost:8000/_wdt/adb71b","method":"GET"} [] [2020-04-14T10:21:29.149064+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:21:29.926432+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"807e09"},"request_uri":"http://localhost:8000/_wdt/807e09","method":"GET"} [] [2020-04-14T10:36:09.189007+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T10:36:10.417770+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c926c2"},"request_uri":"http://localhost:8000/_wdt/c926c2","method":"GET"} [] [2020-04-14T12:12:39.640775+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:12:40.220054+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f9744c"},"request_uri":"http://localhost:8000/_wdt/f9744c","method":"GET"} [] [2020-04-14T12:25:23.004574+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:25:24.046707+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"db5bf2"},"request_uri":"http://localhost:8000/_wdt/db5bf2","method":"GET"} [] [2020-04-14T12:25:36.851657+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:25:37.456745+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1cffad"},"request_uri":"http://localhost:8000/_wdt/1cffad","method":"GET"} [] [2020-04-14T12:25:39.501184+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:25:40.099585+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8e10bf"},"request_uri":"http://localhost:8000/_wdt/8e10bf","method":"GET"} [] [2020-04-14T12:25:57.898486+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:25:58.589295+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ef4cb5"},"request_uri":"http://localhost:8000/_wdt/ef4cb5","method":"GET"} [] [2020-04-14T12:27:00.746739+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:27:01.228259+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9c9f57"},"request_uri":"http://localhost:8000/_wdt/9c9f57","method":"GET"} [] [2020-04-14T12:27:12.199252+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:27:12.881273+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"669808"},"request_uri":"http://localhost:8000/_wdt/669808","method":"GET"} [] [2020-04-14T12:27:15.041045+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:27:15.514373+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3ca54f"},"request_uri":"http://localhost:8000/_wdt/3ca54f","method":"GET"} [] [2020-04-14T12:27:48.908671+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:27:49.659469+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"926d28"},"request_uri":"http://localhost:8000/_wdt/926d28","method":"GET"} [] [2020-04-14T12:30:38.660812+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:30:39.628093+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"38a4fb"},"request_uri":"http://localhost:8000/_wdt/38a4fb","method":"GET"} [] [2020-04-14T12:30:47.790770+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:30:48.280805+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"441722"},"request_uri":"http://localhost:8000/_wdt/441722","method":"GET"} [] [2020-04-14T12:31:02.373781+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:31:02.883223+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"925e89"},"request_uri":"http://localhost:8000/_wdt/925e89","method":"GET"} [] [2020-04-14T12:37:31.442773+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:37:32.160292+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"272fbc"},"request_uri":"http://localhost:8000/_wdt/272fbc","method":"GET"} [] [2020-04-14T12:40:49.678135+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:40:51.475577+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f46a7f"},"request_uri":"http://localhost:8000/_wdt/f46a7f","method":"GET"} [] [2020-04-14T12:41:06.921536+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:41:07.565543+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a07e5f"},"request_uri":"http://localhost:8000/_wdt/a07e5f","method":"GET"} [] [2020-04-14T12:41:17.850101+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:41:18.355943+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f6b979"},"request_uri":"http://localhost:8000/_wdt/f6b979","method":"GET"} [] [2020-04-14T12:41:34.292697+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:41:34.847422+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"50bdb5"},"request_uri":"http://localhost:8000/_wdt/50bdb5","method":"GET"} [] [2020-04-14T12:47:08.108198+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:47:08.784891+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a77d2f"},"request_uri":"http://localhost:8000/_wdt/a77d2f","method":"GET"} [] [2020-04-14T12:48:26.233424+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:48:26.965687+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b47f06"},"request_uri":"http://localhost:8000/_wdt/b47f06","method":"GET"} [] [2020-04-14T12:51:56.489419+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:51:57.370580+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e40895"},"request_uri":"http://localhost:8000/_wdt/e40895","method":"GET"} [] [2020-04-14T12:52:06.932479+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:52:07.571273+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d1eeb6"},"request_uri":"http://localhost:8000/_wdt/d1eeb6","method":"GET"} [] [2020-04-14T12:53:38.271170+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T12:53:38.736576+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"556786"},"request_uri":"http://localhost:8000/_wdt/556786","method":"GET"} [] [2020-04-14T13:02:13.731705+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T13:02:14.377586+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"689d51"},"request_uri":"http://localhost:8000/_wdt/689d51","method":"GET"} [] [2020-04-14T13:04:44.121594+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T13:04:45.006632+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a4c015"},"request_uri":"http://localhost:8000/_wdt/a4c015","method":"GET"} [] [2020-04-14T13:04:58.841853+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T13:04:59.344298+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"366b21"},"request_uri":"http://localhost:8000/_wdt/366b21","method":"GET"} [] [2020-04-14T13:05:28.890465+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T13:05:29.423516+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"14f1b2"},"request_uri":"http://localhost:8000/_wdt/14f1b2","method":"GET"} [] [2020-04-14T13:05:56.753998+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T13:05:57.342505+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"384215"},"request_uri":"http://localhost:8000/_wdt/384215","method":"GET"} [] [2020-04-14T13:19:27.300763+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:19:28.181240+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b4fbb8"},"request_uri":"http://localhost:8000/_wdt/b4fbb8","method":"GET"} [] [2020-04-14T13:19:48.744399+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:19:49.236882+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"400a12"},"request_uri":"http://localhost:8000/_wdt/400a12","method":"GET"} [] [2020-04-14T13:22:17.820507+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:22:18.342193+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3b1d4c"},"request_uri":"http://localhost:8000/_wdt/3b1d4c","method":"GET"} [] [2020-04-14T13:23:11.307284+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:23:11.934234+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1ee86a"},"request_uri":"http://localhost:8000/_wdt/1ee86a","method":"GET"} [] [2020-04-14T13:26:33.052951+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:26:34.188195+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"16a657"},"request_uri":"http://localhost:8000/_wdt/16a657","method":"GET"} [] [2020-04-14T13:26:39.671331+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:26:40.485209+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2129d7"},"request_uri":"http://localhost:8000/_wdt/2129d7","method":"GET"} [] [2020-04-14T13:28:37.143508+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:28:38.033001+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"acbe54"},"request_uri":"http://localhost:8000/_wdt/acbe54","method":"GET"} [] [2020-04-14T13:28:54.352674+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:28:54.962849+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"994472"},"request_uri":"http://localhost:8000/_wdt/994472","method":"GET"} [] [2020-04-14T13:29:14.853982+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:29:15.658286+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9a7fae"},"request_uri":"http://localhost:8000/_wdt/9a7fae","method":"GET"} [] [2020-04-14T13:32:46.481434+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:32:47.263446+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6a5d23"},"request_uri":"http://localhost:8000/_wdt/6a5d23","method":"GET"} [] [2020-04-14T13:38:49.890882+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:38:50.658933+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1c8c1f"},"request_uri":"http://localhost:8000/_wdt/1c8c1f","method":"GET"} [] [2020-04-14T13:39:00.549388+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:39:01.027988+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2ca172"},"request_uri":"http://localhost:8000/_wdt/2ca172","method":"GET"} [] [2020-04-14T13:42:02.629103+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:42:03.327264+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c801fe"},"request_uri":"http://localhost:8000/_wdt/c801fe","method":"GET"} [] [2020-04-14T13:45:27.091884+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:45:27.633623+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8ffaf5"},"request_uri":"http://localhost:8000/_wdt/8ffaf5","method":"GET"} [] [2020-04-14T13:45:36.172659+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:45:36.628001+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1e7cdc"},"request_uri":"http://localhost:8000/_wdt/1e7cdc","method":"GET"} [] [2020-04-14T13:45:51.811850+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:45:52.320971+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f569ad"},"request_uri":"http://localhost:8000/_wdt/f569ad","method":"GET"} [] [2020-04-14T13:45:57.782691+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:45:58.153404+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8051a6"},"request_uri":"http://localhost:8000/_wdt/8051a6","method":"GET"} [] [2020-04-14T13:46:05.657671+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:46:05.994279+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c34288"},"request_uri":"http://localhost:8000/_wdt/c34288","method":"GET"} [] [2020-04-14T13:47:29.546653+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:47:29.972907+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2d865d"},"request_uri":"http://localhost:8000/_wdt/2d865d","method":"GET"} [] [2020-04-14T13:47:35.047722+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:47:35.577346+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2a160a"},"request_uri":"http://localhost:8000/_wdt/2a160a","method":"GET"} [] [2020-04-14T13:47:41.147550+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:47:41.602485+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"94cb2f"},"request_uri":"http://localhost:8000/_wdt/94cb2f","method":"GET"} [] [2020-04-14T13:47:42.169616+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:47:42.559945+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c4aed8"},"request_uri":"http://localhost:8000/_wdt/c4aed8","method":"GET"} [] [2020-04-14T13:47:47.602694+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:47:47.957230+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T13:47:48.188266+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ef33bf"},"request_uri":"http://localhost:8000/_wdt/ef33bf","method":"GET"} [] [2020-04-14T13:47:48.570484+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f4aa04"},"request_uri":"http://localhost:8000/_wdt/f4aa04","method":"GET"} [] [2020-04-14T14:03:38.614270+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:03:39.710570+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2a7516"},"request_uri":"http://localhost:8000/_wdt/2a7516","method":"GET"} [] [2020-04-14T14:06:09.149363+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:06:09.698625+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e63077"},"request_uri":"http://localhost:8000/_wdt/e63077","method":"GET"} [] [2020-04-14T14:06:20.986117+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:06:21.859636+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"734bdb"},"request_uri":"http://localhost:8000/_wdt/734bdb","method":"GET"} [] [2020-04-14T14:06:41.527264+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:06:42.055004+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"03c83b"},"request_uri":"http://localhost:8000/_wdt/03c83b","method":"GET"} [] [2020-04-14T14:06:53.864780+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:06:54.773016+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6c0fba"},"request_uri":"http://localhost:8000/_wdt/6c0fba","method":"GET"} [] [2020-04-14T14:07:49.829482+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:07:50.215940+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"34b38c"},"request_uri":"http://localhost:8000/_wdt/34b38c","method":"GET"} [] [2020-04-14T14:09:09.623104+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:09:10.182625+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3b0581"},"request_uri":"http://localhost:8000/_wdt/3b0581","method":"GET"} [] [2020-04-14T14:09:17.469387+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:09:17.848151+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b19b53"},"request_uri":"http://localhost:8000/_wdt/b19b53","method":"GET"} [] [2020-04-14T14:09:31.318231+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:09:31.791656+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"30400c"},"request_uri":"http://localhost:8000/_wdt/30400c","method":"GET"} [] [2020-04-14T14:09:37.854796+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:09:38.329498+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cc1de9"},"request_uri":"http://localhost:8000/_wdt/cc1de9","method":"GET"} [] [2020-04-14T14:10:19.052574+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:10:19.558251+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a3ba64"},"request_uri":"http://localhost:8000/_wdt/a3ba64","method":"GET"} [] [2020-04-14T14:10:21.612256+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:10:22.152889+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f7b5a9"},"request_uri":"http://localhost:8000/_wdt/f7b5a9","method":"GET"} [] [2020-04-14T14:10:35.033665+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:10:35.569031+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6e7d86"},"request_uri":"http://localhost:8000/_wdt/6e7d86","method":"GET"} [] [2020-04-14T14:15:23.286172+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:15:23.956220+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"497bce"},"request_uri":"http://localhost:8000/_wdt/497bce","method":"GET"} [] [2020-04-14T14:15:38.440204+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:15:38.978998+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"da0cb6"},"request_uri":"http://localhost:8000/_wdt/da0cb6","method":"GET"} [] [2020-04-14T14:15:41.104519+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:15:41.597178+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"29e1b9"},"request_uri":"http://localhost:8000/_wdt/29e1b9","method":"GET"} [] [2020-04-14T14:16:00.846640+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:16:01.312539+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1e9447"},"request_uri":"http://localhost:8000/_wdt/1e9447","method":"GET"} [] [2020-04-14T14:16:11.060441+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:16:11.493394+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d680e6"},"request_uri":"http://localhost:8000/_wdt/d680e6","method":"GET"} [] [2020-04-14T14:16:26.133040+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:16:26.631604+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6a2807"},"request_uri":"http://localhost:8000/_wdt/6a2807","method":"GET"} [] [2020-04-14T14:16:36.094317+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:16:36.507684+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a7ebfd"},"request_uri":"http://localhost:8000/_wdt/a7ebfd","method":"GET"} [] [2020-04-14T14:16:42.102333+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:16:42.631184+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"80a10a"},"request_uri":"http://localhost:8000/_wdt/80a10a","method":"GET"} [] [2020-04-14T14:17:27.841834+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:17:28.514959+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"52c06c"},"request_uri":"http://localhost:8000/_wdt/52c06c","method":"GET"} [] [2020-04-14T14:27:52.834269+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:27:53.904524+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a7c43e"},"request_uri":"http://localhost:8000/_wdt/a7c43e","method":"GET"} [] [2020-04-14T14:31:14.127085+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:31:14.744055+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"228356"},"request_uri":"http://localhost:8000/_wdt/228356","method":"GET"} [] [2020-04-14T14:31:47.587602+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:31:48.051853+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"447bdf"},"request_uri":"http://localhost:8000/_wdt/447bdf","method":"GET"} [] [2020-04-14T14:32:00.093666+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:32:00.655836+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"addb11"},"request_uri":"http://localhost:8000/_wdt/addb11","method":"GET"} [] [2020-04-14T14:32:11.888199+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:32:12.336655+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"879dd4"},"request_uri":"http://localhost:8000/_wdt/879dd4","method":"GET"} [] [2020-04-14T14:32:20.340252+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:32:20.801533+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b7ccd4"},"request_uri":"http://localhost:8000/_wdt/b7ccd4","method":"GET"} [] [2020-04-14T14:32:45.643191+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:32:46.231736+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0a44b3"},"request_uri":"http://localhost:8000/_wdt/0a44b3","method":"GET"} [] [2020-04-14T14:33:01.476229+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:33:01.954134+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e4473c"},"request_uri":"http://localhost:8000/_wdt/e4473c","method":"GET"} [] [2020-04-14T14:33:07.862188+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:33:08.432545+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3acd7d"},"request_uri":"http://localhost:8000/_wdt/3acd7d","method":"GET"} [] [2020-04-14T14:33:43.142736+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:33:43.716056+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a06c5f"},"request_uri":"http://localhost:8000/_wdt/a06c5f","method":"GET"} [] [2020-04-14T14:33:58.867992+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:33:59.386198+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0501b8"},"request_uri":"http://localhost:8000/_wdt/0501b8","method":"GET"} [] [2020-04-14T14:34:38.858510+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:34:39.501476+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d85c40"},"request_uri":"http://localhost:8000/_wdt/d85c40","method":"GET"} [] [2020-04-14T14:34:50.739920+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:34:51.450440+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0481d2"},"request_uri":"http://localhost:8000/_wdt/0481d2","method":"GET"} [] [2020-04-14T14:35:05.189570+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:35:05.629169+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3066cf"},"request_uri":"http://localhost:8000/_wdt/3066cf","method":"GET"} [] [2020-04-14T14:37:25.269745+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:37:25.879266+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"deca19"},"request_uri":"http://localhost:8000/_wdt/deca19","method":"GET"} [] [2020-04-14T14:37:51.480000+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:37:52.117342+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3d04d3"},"request_uri":"http://localhost:8000/_wdt/3d04d3","method":"GET"} [] [2020-04-14T14:37:55.251737+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:37:55.695482+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d63b28"},"request_uri":"http://localhost:8000/_wdt/d63b28","method":"GET"} [] [2020-04-14T14:39:11.670395+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:39:12.230426+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2e558c"},"request_uri":"http://localhost:8000/_wdt/2e558c","method":"GET"} [] [2020-04-14T14:46:47.122204+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:46:47.757326+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ab1300"},"request_uri":"http://localhost:8000/_wdt/ab1300","method":"GET"} [] [2020-04-14T14:47:11.460725+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:47:12.049185+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6d0c5a"},"request_uri":"http://localhost:8000/_wdt/6d0c5a","method":"GET"} [] [2020-04-14T14:47:44.880010+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:47:45.444123+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"20c552"},"request_uri":"http://localhost:8000/_wdt/20c552","method":"GET"} [] [2020-04-14T14:52:04.558313+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:52:06.316190+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bf62ae"},"request_uri":"http://localhost:8000/_wdt/bf62ae","method":"GET"} [] [2020-04-14T14:56:29.860346+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:56:30.653925+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d5fa33"},"request_uri":"http://localhost:8000/_wdt/d5fa33","method":"GET"} [] [2020-04-14T14:56:47.028869+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:56:47.738169+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8447e0"},"request_uri":"http://localhost:8000/_wdt/8447e0","method":"GET"} [] [2020-04-14T14:56:51.112686+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:56:51.724179+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f30283"},"request_uri":"http://localhost:8000/_wdt/f30283","method":"GET"} [] [2020-04-14T14:57:35.324616+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:57:36.265618+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9a7f7f"},"request_uri":"http://localhost:8000/_wdt/9a7f7f","method":"GET"} [] [2020-04-14T14:57:53.679663+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:57:54.408413+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"293dc0"},"request_uri":"http://localhost:8000/_wdt/293dc0","method":"GET"} [] [2020-04-14T14:58:04.510725+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:58:05.176678+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bde884"},"request_uri":"http://localhost:8000/_wdt/bde884","method":"GET"} [] [2020-04-14T14:58:11.199195+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:58:11.624399+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2619dd"},"request_uri":"http://localhost:8000/_wdt/2619dd","method":"GET"} [] [2020-04-14T14:58:29.528239+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:58:29.818532+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:58:30.614177+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2556ac"},"request_uri":"http://localhost:8000/_wdt/2556ac","method":"GET"} [] [2020-04-14T14:58:50.952786+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:58:51.658440+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a32ae1"},"request_uri":"http://localhost:8000/_wdt/a32ae1","method":"GET"} [] [2020-04-14T14:59:05.084391+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T14:59:05.834513+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"114c0f"},"request_uri":"http://localhost:8000/_wdt/114c0f","method":"GET"} [] [2020-04-14T15:01:05.516536+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:01:06.488175+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ce119b"},"request_uri":"http://localhost:8000/_wdt/ce119b","method":"GET"} [] [2020-04-14T15:01:35.486057+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:01:36.167168+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"395ca2"},"request_uri":"http://localhost:8000/_wdt/395ca2","method":"GET"} [] [2020-04-14T15:02:09.506882+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:02:10.230640+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0925e8"},"request_uri":"http://localhost:8000/_wdt/0925e8","method":"GET"} [] [2020-04-14T15:03:12.863928+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:03:14.553238+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"beb6de"},"request_uri":"http://localhost:8000/_wdt/beb6de","method":"GET"} [] [2020-04-14T15:03:16.819699+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:03:17.286508+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9a61db"},"request_uri":"http://localhost:8000/_wdt/9a61db","method":"GET"} [] [2020-04-14T15:03:27.896370+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:03:28.509459+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a35602"},"request_uri":"http://localhost:8000/_wdt/a35602","method":"GET"} [] [2020-04-14T15:04:02.300638+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:04:02.952371+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"56621a"},"request_uri":"http://localhost:8000/_wdt/56621a","method":"GET"} [] [2020-04-14T15:04:17.689913+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:04:18.374979+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f1aff8"},"request_uri":"http://localhost:8000/_wdt/f1aff8","method":"GET"} [] [2020-04-14T15:04:45.423596+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:04:46.558291+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fd4e46"},"request_uri":"http://localhost:8000/_wdt/fd4e46","method":"GET"} [] [2020-04-14T15:05:44.677061+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-14T15:05:45.283220+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bca389"},"request_uri":"http://localhost:8000/_wdt/bca389","method":"GET"} [] [2020-04-14T15:05:52.005992+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-14T15:05:53.021120+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"666054"},"request_uri":"http://localhost:8000/_wdt/666054","method":"GET"} [] [2020-04-14T15:10:40.761373+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-14T15:10:42.034652+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"eae0e7"},"request_uri":"http://localhost:8000/_wdt/eae0e7","method":"GET"} [] [2020-04-16T10:00:13.343925+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-16T10:00:13.411762+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-16T10:00:13.516596+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-16T10:00:13.517563+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-16T10:00:13.601585+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-16T10:00:13.602749+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-16T10:00:13.972129+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"820fb9"},"request_uri":"http://localhost:8000/_wdt/820fb9","method":"GET"} [] [2020-04-16T10:07:15.789465+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-16T10:07:16.527807+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5ba990"},"request_uri":"http://localhost:8000/_wdt/5ba990","method":"GET"} [] [2020-04-20T13:52:25.616645+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-20T13:52:27.229135+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9000a1"},"request_uri":"http://localhost:8000/_wdt/9000a1","method":"GET"} [] [2020-04-20T14:06:03.805641+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:06:04.423759+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6306c6"},"request_uri":"http://localhost:8000/_wdt/6306c6","method":"GET"} [] [2020-04-20T14:06:40.096534+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:06:40.722272+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"380f86"},"request_uri":"http://localhost:8000/_wdt/380f86","method":"GET"} [] [2020-04-20T14:13:32.257833+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:13:32.832140+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"af20e5"},"request_uri":"http://localhost:8000/_wdt/af20e5","method":"GET"} [] [2020-04-20T14:13:45.608181+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:13:46.077136+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bb40a7"},"request_uri":"http://localhost:8000/_wdt/bb40a7","method":"GET"} [] [2020-04-20T14:13:57.688156+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:13:58.199463+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b75491"},"request_uri":"http://localhost:8000/_wdt/b75491","method":"GET"} [] [2020-04-20T14:14:24.885376+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:14:25.284396+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a130b6"},"request_uri":"http://localhost:8000/_wdt/a130b6","method":"GET"} [] [2020-04-20T14:14:33.846473+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:14:34.218072+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fca568"},"request_uri":"http://localhost:8000/_wdt/fca568","method":"GET"} [] [2020-04-20T14:14:41.014494+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:14:41.551825+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3d741f"},"request_uri":"http://localhost:8000/_wdt/3d741f","method":"GET"} [] [2020-04-20T14:14:47.893844+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:14:48.331836+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7de752"},"request_uri":"http://localhost:8000/_wdt/7de752","method":"GET"} [] [2020-04-20T14:15:30.460835+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:15:30.939587+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e724a2"},"request_uri":"http://localhost:8000/_wdt/e724a2","method":"GET"} [] [2020-04-20T14:16:15.838808+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:16:16.310083+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"502292"},"request_uri":"http://localhost:8000/_wdt/502292","method":"GET"} [] [2020-04-20T14:16:59.979203+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:17:00.515597+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f6d2fd"},"request_uri":"http://localhost:8000/_wdt/f6d2fd","method":"GET"} [] [2020-04-20T14:18:51.232912+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:18:51.746756+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"289131"},"request_uri":"http://localhost:8000/_wdt/289131","method":"GET"} [] [2020-04-20T14:18:59.407437+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:18:59.840489+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"00472d"},"request_uri":"http://localhost:8000/_wdt/00472d","method":"GET"} [] [2020-04-20T14:19:07.962941+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:19:08.490378+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c8e3fe"},"request_uri":"http://localhost:8000/_wdt/c8e3fe","method":"GET"} [] [2020-04-20T14:19:19.228430+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:19:19.822876+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e376b2"},"request_uri":"http://localhost:8000/_wdt/e376b2","method":"GET"} [] [2020-04-20T14:19:30.982733+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:19:31.324193+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"92d5aa"},"request_uri":"http://localhost:8000/_wdt/92d5aa","method":"GET"} [] [2020-04-20T14:22:34.878428+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:22:35.672950+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ffb9fb"},"request_uri":"http://localhost:8000/_wdt/ffb9fb","method":"GET"} [] [2020-04-20T14:28:13.353020+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:28:13.914394+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"61e29f"},"request_uri":"http://localhost:8000/_wdt/61e29f","method":"GET"} [] [2020-04-20T14:38:49.169697+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:38:49.784424+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e50a2b"},"request_uri":"http://localhost:8000/_wdt/e50a2b","method":"GET"} [] [2020-04-20T14:39:04.938112+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:39:05.374789+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b8efa0"},"request_uri":"http://localhost:8000/_wdt/b8efa0","method":"GET"} [] [2020-04-20T14:39:24.793019+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:39:25.265768+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a9d1db"},"request_uri":"http://localhost:8000/_wdt/a9d1db","method":"GET"} [] [2020-04-20T14:45:34.318783+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:45:35.023254+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"984022"},"request_uri":"http://localhost:8000/_wdt/984022","method":"GET"} [] [2020-04-20T14:45:45.447065+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:45:45.914789+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"51892e"},"request_uri":"http://localhost:8000/_wdt/51892e","method":"GET"} [] [2020-04-20T14:57:22.682032+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:57:23.380268+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2dac23"},"request_uri":"http://localhost:8000/_wdt/2dac23","method":"GET"} [] [2020-04-20T14:57:32.797270+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:57:33.356781+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e30f13"},"request_uri":"http://localhost:8000/_wdt/e30f13","method":"GET"} [] [2020-04-20T14:57:40.239762+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:57:40.715113+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ca6276"},"request_uri":"http://localhost:8000/_wdt/ca6276","method":"GET"} [] [2020-04-20T14:57:53.822071+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:57:54.242547+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fc5ead"},"request_uri":"http://localhost:8000/_wdt/fc5ead","method":"GET"} [] [2020-04-20T14:58:16.804275+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:58:17.289642+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"057cdc"},"request_uri":"http://localhost:8000/_wdt/057cdc","method":"GET"} [] [2020-04-20T14:58:24.355182+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:58:24.798707+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bff268"},"request_uri":"http://localhost:8000/_wdt/bff268","method":"GET"} [] [2020-04-20T14:58:34.707963+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T14:58:36.575726+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7db127"},"request_uri":"http://localhost:8000/_wdt/7db127","method":"GET"} [] [2020-04-20T15:00:09.074074+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-20T15:00:09.559238+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"69be65"},"request_uri":"http://localhost:8000/_wdt/69be65","method":"GET"} [] [2020-04-20T15:29:38.246961+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:29:38.285157+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\RuntimeError: "Variable "form" does not exist." at /Applications/MAMP/htdocs/Adeline/templates/pages/contact.html.twig line 17 {"exception":"[object] (Twig\\Error\\RuntimeError(code: 0): Variable \"form\" does not exist. at /Applications/MAMP/htdocs/Adeline/templates/pages/contact.html.twig:17)"} [] [2020-04-20T15:29:39.179134+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"871954"},"request_uri":"http://localhost:8000/_wdt/871954","method":"GET"} [] [2020-04-20T15:31:22.960338+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:31:23.457504+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"72d15e"},"request_uri":"http://localhost:8000/_wdt/72d15e","method":"GET"} [] [2020-04-20T15:31:55.981352+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:31:56.446840+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"91e0f6"},"request_uri":"http://localhost:8000/_wdt/91e0f6","method":"GET"} [] [2020-04-20T15:32:34.083045+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:34.556548+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"55631d"},"request_uri":"http://localhost:8000/_wdt/55631d","method":"GET"} [] [2020-04-20T15:32:36.777764+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:37.250649+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b9c53f"},"request_uri":"http://localhost:8000/_wdt/b9c53f","method":"GET"} [] [2020-04-20T15:32:37.703016+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:38.196318+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fd21a5"},"request_uri":"http://localhost:8000/_wdt/fd21a5","method":"GET"} [] [2020-04-20T15:32:38.651495+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:39.000420+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f02a36"},"request_uri":"http://localhost:8000/_wdt/f02a36","method":"GET"} [] [2020-04-20T15:32:49.236857+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:49.624282+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"daad16"},"request_uri":"http://localhost:8000/_wdt/daad16","method":"GET"} [] [2020-04-20T15:32:50.229909+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:50.460831+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:50.625809+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:32:51.048154+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9c5364"},"request_uri":"http://localhost:8000/_wdt/9c5364","method":"GET"} [] [2020-04-20T15:34:56.393289+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:34:56.991754+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dda017"},"request_uri":"http://localhost:8000/_wdt/dda017","method":"GET"} [] [2020-04-20T15:36:02.761324+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:36:03.449415+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4f75b7"},"request_uri":"http://localhost:8000/_wdt/4f75b7","method":"GET"} [] [2020-04-20T15:36:07.918730+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:36:08.640415+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1d4e02"},"request_uri":"http://localhost:8000/_wdt/1d4e02","method":"GET"} [] [2020-04-20T15:38:14.074782+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:38:14.676169+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d79a02"},"request_uri":"http://localhost:8000/_wdt/d79a02","method":"GET"} [] [2020-04-20T15:38:38.724774+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:38:39.436420+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"546e39"},"request_uri":"http://localhost:8000/_wdt/546e39","method":"GET"} [] [2020-04-20T15:38:40.259583+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:38:40.919760+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"486a73"},"request_uri":"http://localhost:8000/_wdt/486a73","method":"GET"} [] [2020-04-20T15:39:43.109462+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:39:43.714719+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"256034"},"request_uri":"http://localhost:8000/_wdt/256034","method":"GET"} [] [2020-04-20T15:39:50.326926+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:39:50.817871+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"79b1fb"},"request_uri":"http://localhost:8000/_wdt/79b1fb","method":"GET"} [] [2020-04-20T15:40:01.721904+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:40:02.284727+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"473fbb"},"request_uri":"http://localhost:8000/_wdt/473fbb","method":"GET"} [] [2020-04-20T15:40:12.115882+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:40:12.741106+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"eac40c"},"request_uri":"http://localhost:8000/_wdt/eac40c","method":"GET"} [] [2020-04-20T15:40:13.700394+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:40:14.336391+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a0d23c"},"request_uri":"http://localhost:8000/_wdt/a0d23c","method":"GET"} [] [2020-04-20T15:40:15.259573+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:40:15.924018+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"66183c"},"request_uri":"http://localhost:8000/_wdt/66183c","method":"GET"} [] [2020-04-20T15:40:19.933017+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:40:20.485686+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f41493"},"request_uri":"http://localhost:8000/_wdt/f41493","method":"GET"} [] [2020-04-20T15:40:39.432950+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:40:39.966436+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fc6d0a"},"request_uri":"http://localhost:8000/_wdt/fc6d0a","method":"GET"} [] [2020-04-20T15:41:58.214226+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:41:59.050911+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8f3786"},"request_uri":"http://localhost:8000/_wdt/8f3786","method":"GET"} [] [2020-04-20T15:42:22.394985+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:42:23.268692+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bee1cc"},"request_uri":"http://localhost:8000/_wdt/bee1cc","method":"GET"} [] [2020-04-20T15:47:27.683508+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:47:28.521972+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"319592"},"request_uri":"http://localhost:8000/_wdt/319592","method":"GET"} [] [2020-04-20T15:50:38.925564+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T15:50:39.567797+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f4d146"},"request_uri":"http://localhost:8000/_wdt/f4d146","method":"GET"} [] [2020-04-20T16:00:28.814191+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:00:29.511094+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a5124c"},"request_uri":"http://localhost:8000/_wdt/a5124c","method":"GET"} [] [2020-04-20T16:00:48.705835+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:00:49.176441+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0f84d0"},"request_uri":"http://localhost:8000/_wdt/0f84d0","method":"GET"} [] [2020-04-20T16:01:56.863586+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:01:57.270198+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e2624e"},"request_uri":"http://localhost:8000/_wdt/e2624e","method":"GET"} [] [2020-04-20T16:03:37.212719+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:03:37.717146+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"75cb84"},"request_uri":"http://localhost:8000/_wdt/75cb84","method":"GET"} [] [2020-04-20T16:03:54.826390+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:03:55.315046+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c67ba1"},"request_uri":"http://localhost:8000/_wdt/c67ba1","method":"GET"} [] [2020-04-20T16:04:01.432922+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:04:01.895112+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dd23cc"},"request_uri":"http://localhost:8000/_wdt/dd23cc","method":"GET"} [] [2020-04-20T16:04:51.926076+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:04:52.427066+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f1a77e"},"request_uri":"http://localhost:8000/_wdt/f1a77e","method":"GET"} [] [2020-04-20T16:05:31.154637+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:05:31.658372+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"30fbe3"},"request_uri":"http://localhost:8000/_wdt/30fbe3","method":"GET"} [] [2020-04-20T16:05:56.343293+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:05:56.840300+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d316bb"},"request_uri":"http://localhost:8000/_wdt/d316bb","method":"GET"} [] [2020-04-20T16:08:33.759507+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:08:34.299907+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"06eaa9"},"request_uri":"http://localhost:8000/_wdt/06eaa9","method":"GET"} [] [2020-04-20T16:08:35.068981+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:08:35.625404+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4506a5"},"request_uri":"http://localhost:8000/_wdt/4506a5","method":"GET"} [] [2020-04-20T16:08:36.063457+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-20T16:08:36.603172+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"35901c"},"request_uri":"http://localhost:8000/_wdt/35901c","method":"GET"} [] [2020-04-21T07:00:48.509627+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:00:49.632956+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c27e38"},"request_uri":"http://localhost:8000/_wdt/c27e38","method":"GET"} [] [2020-04-21T07:00:52.082948+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:00:52.532615+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a95b0b"},"request_uri":"http://localhost:8000/_wdt/a95b0b","method":"GET"} [] [2020-04-21T07:00:53.200420+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:00:53.996215+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"715193"},"request_uri":"http://localhost:8000/_wdt/715193","method":"GET"} [] [2020-04-21T07:01:12.715774+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:01:13.189221+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b51290"},"request_uri":"http://localhost:8000/_wdt/b51290","method":"GET"} [] [2020-04-21T07:02:44.756676+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:02:45.280779+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c9082f"},"request_uri":"http://localhost:8000/_wdt/c9082f","method":"GET"} [] [2020-04-21T07:13:04.953199+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:13:05.761322+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4b529f"},"request_uri":"http://localhost:8000/_wdt/4b529f","method":"GET"} [] [2020-04-21T07:15:04.112742+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:15:04.869328+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d2c264"},"request_uri":"http://localhost:8000/_wdt/d2c264","method":"GET"} [] [2020-04-21T07:15:11.925271+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:15:12.604259+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"90d940"},"request_uri":"http://localhost:8000/_wdt/90d940","method":"GET"} [] [2020-04-21T07:15:26.135443+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:15:27.006202+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"79ca07"},"request_uri":"http://localhost:8000/_wdt/79ca07","method":"GET"} [] [2020-04-21T07:15:34.973589+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:15:35.639676+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"76061e"},"request_uri":"http://localhost:8000/_wdt/76061e","method":"GET"} [] [2020-04-21T07:17:31.624972+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:17:32.397346+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2c9b16"},"request_uri":"http://localhost:8000/_wdt/2c9b16","method":"GET"} [] [2020-04-21T07:17:34.196362+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:17:34.850822+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"77f930"},"request_uri":"http://localhost:8000/_wdt/77f930","method":"GET"} [] [2020-04-21T07:17:45.637164+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:17:46.283012+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c1151b"},"request_uri":"http://localhost:8000/_wdt/c1151b","method":"GET"} [] [2020-04-21T07:17:50.387304+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:17:51.098440+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"682a34"},"request_uri":"http://localhost:8000/_wdt/682a34","method":"GET"} [] [2020-04-21T07:24:28.241233+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:24:29.000177+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"823869"},"request_uri":"http://localhost:8000/_wdt/823869","method":"GET"} [] [2020-04-21T07:24:30.892901+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:24:31.539628+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8d826c"},"request_uri":"http://localhost:8000/_wdt/8d826c","method":"GET"} [] [2020-04-21T07:24:44.446738+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:24:45.079265+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"977215"},"request_uri":"http://localhost:8000/_wdt/977215","method":"GET"} [] [2020-04-21T07:24:57.779751+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:24:58.509596+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"636db6"},"request_uri":"http://localhost:8000/_wdt/636db6","method":"GET"} [] [2020-04-21T07:25:06.866404+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:25:07.515476+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ffffc5"},"request_uri":"http://localhost:8000/_wdt/ffffc5","method":"GET"} [] [2020-04-21T07:25:18.196663+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:25:18.947261+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fb4456"},"request_uri":"http://localhost:8000/_wdt/fb4456","method":"GET"} [] [2020-04-21T07:25:33.028530+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:25:33.669385+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f497a0"},"request_uri":"http://localhost:8000/_wdt/f497a0","method":"GET"} [] [2020-04-21T07:38:10.291534+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:38:11.255927+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ee564a"},"request_uri":"http://localhost:8000/_wdt/ee564a","method":"GET"} [] [2020-04-21T07:38:30.975912+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T07:38:32.044503+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4bd765"},"request_uri":"http://localhost:8000/_wdt/4bd765","method":"GET"} [] [2020-04-21T07:39:58.710137+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T07:39:59.396498+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b34472"},"request_uri":"http://localhost:8000/_wdt/b34472","method":"GET"} [] [2020-04-21T07:52:06.796602+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:52:07.644791+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8e3474"},"request_uri":"http://localhost:8000/_wdt/8e3474","method":"GET"} [] [2020-04-21T07:59:20.530380+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:59:21.596887+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"11c443"},"request_uri":"http://localhost:8000/_wdt/11c443","method":"GET"} [] [2020-04-21T07:59:24.929543+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T07:59:25.438732+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5df3f4"},"request_uri":"http://localhost:8000/_wdt/5df3f4","method":"GET"} [] [2020-04-21T08:01:50.265654+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:01:50.943984+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e5259f"},"request_uri":"http://localhost:8000/_wdt/e5259f","method":"GET"} [] [2020-04-21T08:01:55.363028+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:01:55.776125+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e3237f"},"request_uri":"http://localhost:8000/_wdt/e3237f","method":"GET"} [] [2020-04-21T08:02:02.137748+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:02:02.579993+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f7150c"},"request_uri":"http://localhost:8000/_wdt/f7150c","method":"GET"} [] [2020-04-21T08:02:30.639126+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:02:31.026675+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:02:31.272910+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:02:31.370962+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4ac7d3"},"request_uri":"http://localhost:8000/_wdt/4ac7d3","method":"GET"} [] [2020-04-21T08:02:32.041313+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"30ce04"},"request_uri":"http://localhost:8000/_wdt/30ce04","method":"GET"} [] [2020-04-21T08:03:09.203050+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:03:09.942794+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"51bb29"},"request_uri":"http://localhost:8000/_wdt/51bb29","method":"GET"} [] [2020-04-21T08:03:31.414520+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:03:32.081122+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5ed7cd"},"request_uri":"http://localhost:8000/_wdt/5ed7cd","method":"GET"} [] [2020-04-21T08:03:35.104741+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:03:35.639992+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a338e6"},"request_uri":"http://localhost:8000/_wdt/a338e6","method":"GET"} [] [2020-04-21T08:04:08.287121+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:04:08.938678+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"65c05e"},"request_uri":"http://localhost:8000/_wdt/65c05e","method":"GET"} [] [2020-04-21T08:04:22.104007+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:04:22.724491+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5342ed"},"request_uri":"http://localhost:8000/_wdt/5342ed","method":"GET"} [] [2020-04-21T08:06:23.879307+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:06:25.003056+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d41ab1"},"request_uri":"http://localhost:8000/_wdt/d41ab1","method":"GET"} [] [2020-04-21T08:08:07.473057+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:08:08.344388+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5a7161"},"request_uri":"http://localhost:8000/_wdt/5a7161","method":"GET"} [] [2020-04-21T08:08:45.219591+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:08:46.303837+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a828b4"},"request_uri":"http://localhost:8000/_wdt/a828b4","method":"GET"} [] [2020-04-21T08:08:50.442731+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:08:51.447990+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a07d0e"},"request_uri":"http://localhost:8000/_wdt/a07d0e","method":"GET"} [] [2020-04-21T08:09:27.385608+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:09:28.658317+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2ce081"},"request_uri":"http://localhost:8000/_wdt/2ce081","method":"GET"} [] [2020-04-21T08:10:02.876354+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:10:04.371386+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"02f0dc"},"request_uri":"http://localhost:8000/_wdt/02f0dc","method":"GET"} [] [2020-04-21T08:10:23.544259+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:10:24.902628+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c0bff2"},"request_uri":"http://localhost:8000/_wdt/c0bff2","method":"GET"} [] [2020-04-21T08:11:41.492339+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:11:42.173307+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0777ca"},"request_uri":"http://localhost:8000/_wdt/0777ca","method":"GET"} [] [2020-04-21T08:14:40.860284+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:14:42.181260+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3130fe"},"request_uri":"http://localhost:8000/_wdt/3130fe","method":"GET"} [] [2020-04-21T08:15:04.373318+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:15:05.554907+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c87c4a"},"request_uri":"http://localhost:8000/_wdt/c87c4a","method":"GET"} [] [2020-04-21T08:15:19.901726+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:15:21.319036+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6936d3"},"request_uri":"http://localhost:8000/_wdt/6936d3","method":"GET"} [] [2020-04-21T08:15:29.896239+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:15:30.863287+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e1b2d8"},"request_uri":"http://localhost:8000/_wdt/e1b2d8","method":"GET"} [] [2020-04-21T08:16:24.167408+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:16:24.968524+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ab1f65"},"request_uri":"http://localhost:8000/_wdt/ab1f65","method":"GET"} [] [2020-04-21T08:17:05.358617+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:17:06.222978+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9b0177"},"request_uri":"http://localhost:8000/_wdt/9b0177","method":"GET"} [] [2020-04-21T08:19:58.375181+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:19:58.969961+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"899b3e"},"request_uri":"http://localhost:8000/_wdt/899b3e","method":"GET"} [] [2020-04-21T08:22:43.524497+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:22:44.186760+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8bad06"},"request_uri":"http://localhost:8000/_wdt/8bad06","method":"GET"} [] [2020-04-21T08:22:53.478577+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:22:54.329019+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7a9ab9"},"request_uri":"http://localhost:8000/_wdt/7a9ab9","method":"GET"} [] [2020-04-21T08:23:12.668642+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:23:13.360247+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7d74f1"},"request_uri":"http://localhost:8000/_wdt/7d74f1","method":"GET"} [] [2020-04-21T08:23:51.483918+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:23:51.947083+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4458f7"},"request_uri":"http://localhost:8000/_wdt/4458f7","method":"GET"} [] [2020-04-21T08:27:03.414340+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:27:04.070968+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8e947d"},"request_uri":"http://localhost:8000/_wdt/8e947d","method":"GET"} [] [2020-04-21T08:27:15.273681+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:27:15.948633+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"335e88"},"request_uri":"http://localhost:8000/_wdt/335e88","method":"GET"} [] [2020-04-21T08:27:43.655545+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:27:44.345780+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8741fa"},"request_uri":"http://localhost:8000/_wdt/8741fa","method":"GET"} [] [2020-04-21T08:28:58.563039+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:28:59.292932+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c47485"},"request_uri":"http://localhost:8000/_wdt/c47485","method":"GET"} [] [2020-04-21T08:29:30.779684+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:29:31.284580+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"635d47"},"request_uri":"http://localhost:8000/_wdt/635d47","method":"GET"} [] [2020-04-21T08:29:37.700895+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:29:38.650538+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0fb7c4"},"request_uri":"http://localhost:8000/_wdt/0fb7c4","method":"GET"} [] [2020-04-21T08:30:18.102830+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:30:18.718826+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dcebef"},"request_uri":"http://localhost:8000/_wdt/dcebef","method":"GET"} [] [2020-04-21T08:38:30.973914+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-21T08:38:31.736423+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fd66f4"},"request_uri":"http://localhost:8000/_wdt/fd66f4","method":"GET"} [] [2020-04-21T08:38:43.768586+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:38:44.531265+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b8917b"},"request_uri":"http://localhost:8000/_wdt/b8917b","method":"GET"} [] [2020-04-21T08:39:39.227002+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:39:40.018121+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2e65ef"},"request_uri":"http://localhost:8000/_wdt/2e65ef","method":"GET"} [] [2020-04-21T08:39:48.912986+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:39:52.567709+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9fbe7f"},"request_uri":"http://localhost:8000/_wdt/9fbe7f","method":"GET"} [] [2020-04-21T08:39:52.614908+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-21T08:39:53.364078+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4c85de"},"request_uri":"http://localhost:8000/_wdt/4c85de","method":"GET"} [] [2020-04-21T08:39:55.301304+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T08:39:56.161159+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2e5d42"},"request_uri":"http://localhost:8000/_wdt/2e5d42","method":"GET"} [] [2020-04-21T09:01:26.289106+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:01:27.339527+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"62754a"},"request_uri":"http://localhost:8000/_wdt/62754a","method":"GET"} [] [2020-04-21T09:02:04.987763+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:02:05.867825+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"071bc1"},"request_uri":"http://localhost:8000/_wdt/071bc1","method":"GET"} [] [2020-04-21T09:02:20.336932+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:02:21.334614+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"682a13"},"request_uri":"http://localhost:8000/_wdt/682a13","method":"GET"} [] [2020-04-21T09:04:23.263609+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:04:23.938376+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bb4d8b"},"request_uri":"http://localhost:8000/_wdt/bb4d8b","method":"GET"} [] [2020-04-21T09:04:49.643277+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:04:50.406263+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f4ef7b"},"request_uri":"http://localhost:8000/_wdt/f4ef7b","method":"GET"} [] [2020-04-21T09:06:27.411529+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:06:28.086324+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"09d120"},"request_uri":"http://localhost:8000/_wdt/09d120","method":"GET"} [] [2020-04-21T09:19:37.529185+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:19:38.829623+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"50febb"},"request_uri":"http://localhost:8000/_wdt/50febb","method":"GET"} [] [2020-04-21T09:20:01.732076+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:20:03.083423+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e0c651"},"request_uri":"http://localhost:8000/_wdt/e0c651","method":"GET"} [] [2020-04-21T09:21:10.057951+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:21:10.757312+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"45eaff"},"request_uri":"http://localhost:8000/_wdt/45eaff","method":"GET"} [] [2020-04-21T09:22:02.752902+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:22:03.340808+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"073517"},"request_uri":"http://localhost:8000/_wdt/073517","method":"GET"} [] [2020-04-21T09:22:28.708283+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:22:29.337243+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d933bd"},"request_uri":"http://localhost:8000/_wdt/d933bd","method":"GET"} [] [2020-04-21T09:24:34.837934+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:24:35.530003+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"afaaa0"},"request_uri":"http://localhost:8000/_wdt/afaaa0","method":"GET"} [] [2020-04-21T09:24:46.963714+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:24:47.669494+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b04b29"},"request_uri":"http://localhost:8000/_wdt/b04b29","method":"GET"} [] [2020-04-21T09:24:50.180079+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:24:50.743488+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0cc656"},"request_uri":"http://localhost:8000/_wdt/0cc656","method":"GET"} [] [2020-04-21T09:25:47.784756+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:25:48.479249+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cd588a"},"request_uri":"http://localhost:8000/_wdt/cd588a","method":"GET"} [] [2020-04-21T09:28:06.948716+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:28:07.700472+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a852b1"},"request_uri":"http://localhost:8000/_wdt/a852b1","method":"GET"} [] [2020-04-21T09:33:13.943475+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-21T09:33:13.951880+00:00] security.WARNING: Failed to unserialize the security token from the session. {"key":"_security_main","received":"C:74:\"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken\":368:{a:3:{i:0;N;i:1;s:4:\"main\";i:2;a:5:{i:0;C:15:\"App\\Entity\\User\":108:{a:3:{i:0;i:2;i:1;s:10:\"cnamsAdmin\";i:2;s:60:\"$2y$12$z1Z8uXA1/VgFnrPt.6J5i.euFH3IgreeiLuanlgPZ9257u6T9m4Ui\";}}i:1;b:1;i:2;a:1:{i:0;O:41:\"Symfony\\Component\\Security\\Core\\Role\\Role\":1:{s:47:\"\u0000Symfony\\Component\\Security\\Core\\Role\\Role\u0000role\";s:10:\"ROLE_ADMIN\";}}i:3;a:0:{}i:4;a:1:{i:0;s:10:\"ROLE_ADMIN\";}}}}","exception":"[object] (ErrorException(code: 57873340): Class not found: Symfony\\Component\\Security\\Core\\Role\\Role at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/ContextListener.php:309)"} [] [2020-04-21T09:33:13.951988+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":null} [] [2020-04-21T09:33:13.952217+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-21T09:33:13.959533+00:00] security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at /Applications/MAMP/htdocs/Adeline/vendor/symfony/security-http/Firewall/AccessListener.php:89)"} [] [2020-04-21T09:33:13.960076+00:00] security.DEBUG: Calling Authentication entry point. [] [] [2020-04-21T09:33:14.156062+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"GET"} [] [2020-04-21T09:33:14.160460+00:00] security.INFO: Populated the TokenStorage with an anonymous Token. [] [] [2020-04-21T09:33:14.650987+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e4ad10"},"request_uri":"http://localhost:8000/_wdt/e4ad10","method":"GET"} [] [2020-04-21T09:33:30.874404+00:00] request.INFO: Matched route "login". {"route":"login","route_parameters":{"_route":"login","_controller":"App\\Controller\\SecurityController::login"},"request_uri":"http://localhost:8000/admin/login","method":"POST"} [] [2020-04-21T09:33:31.090945+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.username = ? LIMIT 1 ["AdelineMilletAdmin458"] [] [2020-04-21T09:33:31.507594+00:00] security.INFO: User has been authenticated successfully. {"username":"AdelineMilletAdmin458"} [] [2020-04-21T09:33:31.511990+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-21T09:33:31.543418+00:00] request.INFO: Matched route "admin". {"route":"admin","route_parameters":{"_route":"admin","_controller":"App\\Controller\\Admin\\AdminController::index"},"request_uri":"http://localhost:8000/admin","method":"GET"} [] [2020-04-21T09:33:31.544803+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-21T09:33:31.550722+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-21T09:33:31.556949+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-21T09:33:31.604131+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:33:31.643657+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:33:31.666912+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:33:31.688085+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-21T09:33:32.010774+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b1b437"},"request_uri":"http://localhost:8000/_wdt/b1b437","method":"GET"} [] [2020-04-21T09:33:35.660719+00:00] request.INFO: Matched route "admin.actuality.index". {"route":"admin.actuality.index","route_parameters":{"_route":"admin.actuality.index","_controller":"App\\Controller\\Admin\\AdminActualityController::index"},"request_uri":"http://localhost:8000/admin/actualites","method":"GET"} [] [2020-04-21T09:33:35.666346+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-21T09:33:35.676738+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-21T09:33:35.677609+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-21T09:33:35.688447+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:33:35.700633+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:33:35.704141+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:33:35.709322+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-21T09:33:36.054025+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ebbf4f"},"request_uri":"http://localhost:8000/_wdt/ebbf4f","method":"GET"} [] [2020-04-21T09:33:38.335281+00:00] request.INFO: Matched route "admin.actuality.edit". {"route":"admin.actuality.edit","route_parameters":{"_route":"admin.actuality.edit","_controller":"App\\Controller\\Admin\\AdminActualityController::edit","id":"6"},"request_uri":"http://localhost:8000/admin/actualites/6","method":"GET"} [] [2020-04-21T09:33:38.338701+00:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} [] [2020-04-21T09:33:38.351316+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.username AS username_2, t0.password AS password_3 FROM user t0 WHERE t0.id = ? [1] [] [2020-04-21T09:33:38.354808+00:00] security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"AdelineMilletAdmin458"} [] [2020-04-21T09:33:38.360778+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T09:33:38.400946+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:33:38.444219+00:00] doctrine.DEBUG: SELECT c0_.id AS id_0, c0_.name AS name_1 FROM category c0_ [] [] [2020-04-21T09:33:38.472847+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:33:38.477884+00:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} [] [2020-04-21T09:33:38.860268+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"85c557"},"request_uri":"http://localhost:8000/_wdt/85c557","method":"GET"} [] [2020-04-21T09:36:54.128185+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:36:54.193266+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:36:54.225222+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:36:55.368981+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d4a63e"},"request_uri":"http://localhost:8000/_wdt/d4a63e","method":"GET"} [] [2020-04-21T09:37:30.950918+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:37:30.966131+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:37:30.982720+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:37:31.559212+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6ef9df"},"request_uri":"http://localhost:8000/_wdt/6ef9df","method":"GET"} [] [2020-04-21T09:52:50.962349+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:52:51.021654+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:52:51.071451+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:52:51.075710+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:52:51.752590+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e4f7cc"},"request_uri":"http://localhost:8000/_wdt/e4f7cc","method":"GET"} [] [2020-04-21T09:57:50.078808+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:57:50.099390+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:57:50.117538+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:57:50.119299+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:57:52.524428+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b84803"},"request_uri":"http://localhost:8000/_wdt/b84803","method":"GET"} [] [2020-04-21T09:58:49.948791+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:58:49.965233+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:58:49.983334+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:58:49.984702+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:58:50.522552+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"eeab2c"},"request_uri":"http://localhost:8000/_wdt/eeab2c","method":"GET"} [] [2020-04-21T09:59:13.015963+00:00] php.DEBUG: Warning: include(/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/Kernel.php","line":458,"function":"include"}],"count":1}}} [] [2020-04-21T09:59:13.021813+00:00] php.DEBUG: Warning: include(): Failed opening '/Applications/MAMP/htdocs/Adeline/var/cache/de_/App_KernelDevDebugContainer.php' for inclusion (include_path='.:/usr/local/Cellar/php/7.3.4_1/share/php/pear') [] [] [2020-04-21T09:59:17.525013+00:00] php.DEBUG: Warning: file(/proc/mounts): failed to open stream: No such file or directory {"exception":{"Symfony\\Component\\ErrorHandler\\Exception\\SilencedErrorContext":{"severity":2,"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/framework-bundle/Command/CacheClearCommand.php","line":137,"trace":[{"file":"/Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Command/Command.php","line":255,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"}],"count":1}}} [] [2020-04-21T09:59:21.590459+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T09:59:21.658968+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T09:59:21.738321+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T09:59:21.743212+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T09:59:22.657675+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f071aa"},"request_uri":"http://localhost:8000/_wdt/f071aa","method":"GET"} [] [2020-04-21T10:03:47.114168+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T10:03:47.131726+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T10:03:47.148176+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T10:03:47.152991+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T10:03:48.022088+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"952ac9"},"request_uri":"http://localhost:8000/_wdt/952ac9","method":"GET"} [] [2020-04-21T10:09:03.640969+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T10:09:03.657787+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T10:09:03.678014+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T10:09:03.680902+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T10:09:04.861566+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"489806"},"request_uri":"http://localhost:8000/_wdt/489806","method":"GET"} [] [2020-04-21T10:10:54.317488+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T10:10:54.336396+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T10:10:54.354617+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T10:10:54.360164+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T10:10:55.081390+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9d5882"},"request_uri":"http://localhost:8000/_wdt/9d5882","method":"GET"} [] [2020-04-21T10:10:57.481384+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T10:10:57.493245+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T10:10:57.501540+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T10:10:57.503726+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T10:10:58.172850+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b3bcd2"},"request_uri":"http://localhost:8000/_wdt/b3bcd2","method":"GET"} [] [2020-04-21T10:14:49.207185+00:00] console.ERROR: Error thrown while running command "'server:start'". Message: "Command "server:start" is not defined. Did you mean one of these? server:dump server:log" {"exception":"[object] (Symfony\\Component\\Console\\Exception\\CommandNotFoundException(code: 0): Command \"server:start\" is not defined.\n\nDid you mean one of these?\n server:dump\n server:log at /Applications/MAMP/htdocs/Adeline/vendor/symfony/console/Application.php:644)","command":"'server:start'","message":"Command \"server:start\" is not defined.\n\nDid you mean one of these?\n server:dump\n server:log"} [] [2020-04-21T12:16:17.041344+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T12:16:17.171830+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T12:16:17.442014+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T12:16:17.462914+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T12:16:17.600634+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-21T12:16:17.724941+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T12:16:17.848365+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T12:16:17.868176+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T12:16:19.651592+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"48aa9c"},"request_uri":"http://localhost:8000/_wdt/48aa9c","method":"GET"} [] [2020-04-21T12:16:24.122292+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-21T12:16:24.141364+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T12:16:24.159500+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T12:16:24.162800+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T12:16:24.621633+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"497517"},"request_uri":"http://localhost:8000/_wdt/497517","method":"GET"} [] [2020-04-21T12:16:35.028276+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-21T12:16:35.048085+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T12:16:35.058873+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T12:16:35.060792+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T12:16:35.517505+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"55e501"},"request_uri":"http://localhost:8000/_wdt/55e501","method":"GET"} [] [2020-04-21T13:05:19.037108+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-21T13:05:19.126867+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-21T13:05:19.251593+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T13:05:19.263533+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:05:19.863128+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6b744f"},"request_uri":"http://localhost:8000/_wdt/6b744f","method":"GET"} [] [2020-04-21T13:05:24.185407+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T13:05:24.198108+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T13:05:24.211447+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:05:24.220651+00:00] request.CRITICAL: Uncaught PHP Exception Twig\Error\RuntimeError: "Neither the property "text" nor one of the methods "text()", "gettext()"/"istext()"/"hastext()" or "__call()" exist and have public access in class "App\Entity\Actuality"." at /Applications/MAMP/htdocs/Adeline/templates/actuality/show.html.twig line 23 {"exception":"[object] (Twig\\Error\\RuntimeError(code: 0): Neither the property \"text\" nor one of the methods \"text()\", \"gettext()\"/\"istext()\"/\"hastext()\" or \"__call()\" exist and have public access in class \"App\\Entity\\Actuality\". at /Applications/MAMP/htdocs/Adeline/templates/actuality/show.html.twig:23)"} [] [2020-04-21T13:05:24.553740+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c090cd"},"request_uri":"http://localhost:8000/_wdt/c090cd","method":"GET"} [] [2020-04-21T13:05:44.730973+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T13:05:44.745128+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T13:05:44.761887+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:05:45.167572+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"680fea"},"request_uri":"http://localhost:8000/_wdt/680fea","method":"GET"} [] [2020-04-21T13:06:17.804956+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T13:06:17.844119+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T13:06:17.869084+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:06:18.297741+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2ad559"},"request_uri":"http://localhost:8000/_wdt/2ad559","method":"GET"} [] [2020-04-21T13:10:36.779221+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T13:10:36.806384+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T13:10:36.833188+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T13:10:36.836825+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:10:37.506305+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a56c6f"},"request_uri":"http://localhost:8000/_wdt/a56c6f","method":"GET"} [] [2020-04-21T13:12:14.736197+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T13:12:14.760117+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T13:12:14.802686+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T13:12:14.805144+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:12:15.215229+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7b912c"},"request_uri":"http://localhost:8000/_wdt/7b912c","method":"GET"} [] [2020-04-21T13:12:51.830870+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T13:12:51.842666+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T13:12:51.869609+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T13:12:51.874566+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T13:12:52.315918+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ee5d0a"},"request_uri":"http://localhost:8000/_wdt/ee5d0a","method":"GET"} [] [2020-04-21T14:51:26.234272+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T14:51:26.264221+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T14:51:26.312010+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T14:51:26.317503+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T14:51:27.398309+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"60dcd8"},"request_uri":"http://localhost:8000/_wdt/60dcd8","method":"GET"} [] [2020-04-21T14:51:41.681345+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T14:51:41.694583+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T14:51:41.715657+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T14:51:41.721400+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T14:51:42.156854+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3b66d2"},"request_uri":"http://localhost:8000/_wdt/3b66d2","method":"GET"} [] [2020-04-21T14:56:27.327627+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T14:56:27.368616+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T14:56:27.419877+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T14:56:27.429089+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T14:56:28.025749+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8a8b61"},"request_uri":"http://localhost:8000/_wdt/8a8b61","method":"GET"} [] [2020-04-21T14:58:42.930169+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T14:58:42.955001+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T14:58:42.974573+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T14:58:42.980075+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T14:58:43.553319+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e199c0"},"request_uri":"http://localhost:8000/_wdt/e199c0","method":"GET"} [] [2020-04-21T15:01:13.859277+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T15:01:13.896705+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T15:01:13.931884+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T15:01:13.937740+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T15:01:14.453236+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4e94af"},"request_uri":"http://localhost:8000/_wdt/4e94af","method":"GET"} [] [2020-04-21T15:06:40.611543+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T15:06:40.627321+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T15:06:40.654594+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T15:06:40.656575+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T15:06:41.177246+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6a3e99"},"request_uri":"http://localhost:8000/_wdt/6a3e99","method":"GET"} [] [2020-04-21T15:06:57.053438+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T15:06:57.071114+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T15:06:57.092736+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T15:06:57.094688+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T15:06:58.347499+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"450fc3"},"request_uri":"http://localhost:8000/_wdt/450fc3","method":"GET"} [] [2020-04-21T15:07:20.698766+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T15:07:20.720902+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T15:07:20.736527+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T15:07:20.739295+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T15:07:21.252754+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a1301b"},"request_uri":"http://localhost:8000/_wdt/a1301b","method":"GET"} [] [2020-04-21T15:49:37.223898+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-21T15:49:37.250322+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-21T15:49:37.294842+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-21T15:49:37.299024+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-21T15:49:38.178932+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e6559a"},"request_uri":"http://localhost:8000/_wdt/e6559a","method":"GET"} [] [2020-04-21T15:49:40.858902+00:00] request.INFO: Matched route "mentions". {"route":"mentions","route_parameters":{"_route":"mentions","_controller":"App\\Controller\\HomeController::mention"},"request_uri":"http://localhost:8000/mentions-legales-rgpd","method":"GET"} [] [2020-04-21T15:49:41.267688+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"69322c"},"request_uri":"http://localhost:8000/_wdt/69322c","method":"GET"} [] [2020-04-21T15:52:29.529072+00:00] request.INFO: Matched route "mentions". {"route":"mentions","route_parameters":{"_route":"mentions","_controller":"App\\Controller\\HomeController::mention"},"request_uri":"http://localhost:8000/mentions-legales-rgpd","method":"GET"} [] [2020-04-21T15:52:30.427689+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"980cf5"},"request_uri":"http://localhost:8000/_wdt/980cf5","method":"GET"} [] [2020-04-22T15:41:43.117817+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-22T15:41:43.378136+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-22T15:41:43.567092+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-22T15:41:43.631467+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-22T15:41:44.958462+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c1e602"},"request_uri":"http://localhost:8000/_wdt/c1e602","method":"GET"} [] [2020-04-22T15:50:30.213048+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-22T15:50:30.273064+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-22T15:50:30.308984+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-22T15:50:30.319914+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-22T15:50:31.884126+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"000a54"},"request_uri":"http://localhost:8000/_wdt/000a54","method":"GET"} [] [2020-04-24T14:32:26.289775+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:32:26.527863+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:32:26.728666+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:32:26.752017+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:32:27.967907+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"816758"},"request_uri":"http://localhost:8000/_wdt/816758","method":"GET"} [] [2020-04-24T14:34:54.782005+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:34:54.802779+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:34:54.817846+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:34:54.820613+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:34:56.177052+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b1d4be"},"request_uri":"http://localhost:8000/_wdt/b1d4be","method":"GET"} [] [2020-04-24T14:34:59.931791+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:34:59.976786+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:34:59.995586+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:34:59.999816+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:35:01.356028+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"09570a"},"request_uri":"http://localhost:8000/_wdt/09570a","method":"GET"} [] [2020-04-24T14:36:07.374304+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:36:07.400667+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:36:07.420952+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:36:07.422459+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:36:08.378445+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"06ec6e"},"request_uri":"http://localhost:8000/_wdt/06ec6e","method":"GET"} [] [2020-04-24T14:38:17.216629+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:38:17.231212+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:38:17.243392+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:38:17.246445+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:38:18.141999+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"56c260"},"request_uri":"http://localhost:8000/_wdt/56c260","method":"GET"} [] [2020-04-24T14:41:47.195730+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:41:47.213466+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:41:47.227771+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:41:47.232837+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:41:48.684107+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d894a3"},"request_uri":"http://localhost:8000/_wdt/d894a3","method":"GET"} [] [2020-04-24T14:58:48.663315+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:58:48.681698+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:58:48.716806+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:58:48.718239+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:58:51.734714+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9b1e43"},"request_uri":"http://localhost:8000/_wdt/9b1e43","method":"GET"} [] [2020-04-24T14:58:53.828905+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:58:53.845247+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:58:53.864317+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:58:53.868504+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:58:54.904998+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e85da8"},"request_uri":"http://localhost:8000/_wdt/e85da8","method":"GET"} [] [2020-04-24T14:59:27.095490+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T14:59:27.112176+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T14:59:27.141496+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T14:59:27.143130+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T14:59:29.935774+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7160f6"},"request_uri":"http://localhost:8000/_wdt/7160f6","method":"GET"} [] [2020-04-24T15:00:43.226646+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T15:00:43.254670+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T15:00:43.276957+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T15:00:43.281117+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T15:00:44.740778+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ca3d0a"},"request_uri":"http://localhost:8000/_wdt/ca3d0a","method":"GET"} [] [2020-04-24T15:02:46.121359+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T15:02:46.136126+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T15:02:46.147732+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T15:02:46.149025+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T15:02:47.072584+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b1ba4d"},"request_uri":"http://localhost:8000/_wdt/b1ba4d","method":"GET"} [] [2020-04-24T15:03:29.018650+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T15:03:29.046374+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T15:03:29.059799+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T15:03:29.061165+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T15:03:30.443863+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"12ef23"},"request_uri":"http://localhost:8000/_wdt/12ef23","method":"GET"} [] [2020-04-24T15:05:38.058508+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T15:05:38.076882+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T15:05:38.090597+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T15:05:38.094379+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T15:05:39.501949+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3c93d3"},"request_uri":"http://localhost:8000/_wdt/3c93d3","method":"GET"} [] [2020-04-24T15:08:03.809119+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-24T15:08:03.823903+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-24T15:08:03.841913+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-24T15:08:03.845916+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-24T15:08:05.026164+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"151321"},"request_uri":"http://localhost:8000/_wdt/151321","method":"GET"} [] [2020-04-27T08:41:54.133620+00:00] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET /roma" (from "http://localhost:8000/")" at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php line 136 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException(code: 0): No route found for \"GET /roma\" (from \"http://localhost:8000/\") at /Applications/MAMP/htdocs/Adeline/vendor/symfony/http-kernel/EventListener/RouterListener.php:136)\n[previous exception] [object] (Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException(code: 0): No routes found for \"/roma/\". at /Applications/MAMP/htdocs/Adeline/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70)"} [] [2020-04-27T08:41:55.039340+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"81cce0"},"request_uri":"http://localhost:8000/_wdt/81cce0","method":"GET"} [] [2020-04-27T08:43:44.473039+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T08:43:44.686158+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T08:43:44.820874+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T08:43:44.875756+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T08:43:45.675992+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"efbce3"},"request_uri":"http://localhost:8000/_wdt/efbce3","method":"GET"} [] [2020-04-27T08:49:21.852293+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T08:49:21.873644+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T08:49:21.889838+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T08:49:21.891323+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T08:49:22.915938+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7fb64b"},"request_uri":"http://localhost:8000/_wdt/7fb64b","method":"GET"} [] [2020-04-27T08:49:30.570807+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T08:49:30.599137+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T08:49:30.618560+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T08:49:30.621965+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T08:49:31.664978+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"14393e"},"request_uri":"http://localhost:8000/_wdt/14393e","method":"GET"} [] [2020-04-27T08:49:54.712031+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T08:49:54.729844+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T08:49:54.741785+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T08:49:54.744058+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T08:49:56.108927+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"58af16"},"request_uri":"http://localhost:8000/_wdt/58af16","method":"GET"} [] [2020-04-27T08:52:08.226981+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T08:52:08.281699+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T08:52:08.306837+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T08:52:08.311887+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T08:52:09.688524+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"481629"},"request_uri":"http://localhost:8000/_wdt/481629","method":"GET"} [] [2020-04-27T08:53:54.425909+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T08:53:54.446440+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T08:53:54.476385+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T08:53:54.478088+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T08:53:55.633444+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cc03d2"},"request_uri":"http://localhost:8000/_wdt/cc03d2","method":"GET"} [] [2020-04-27T09:11:38.631301+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:11:38.652770+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:11:38.668022+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:11:38.670438+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:11:39.559838+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0cb8a9"},"request_uri":"http://localhost:8000/_wdt/0cb8a9","method":"GET"} [] [2020-04-27T09:15:05.510949+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:15:05.542867+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:15:05.564784+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:15:05.568057+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:15:06.772770+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fe733c"},"request_uri":"http://localhost:8000/_wdt/fe733c","method":"GET"} [] [2020-04-27T09:15:20.327924+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:15:20.346128+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:15:20.358690+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:15:20.361006+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:15:21.203398+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b1b19f"},"request_uri":"http://localhost:8000/_wdt/b1b19f","method":"GET"} [] [2020-04-27T09:15:57.282869+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:15:57.307762+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:15:57.318826+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:15:57.321955+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:15:58.213846+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"397f9b"},"request_uri":"http://localhost:8000/_wdt/397f9b","method":"GET"} [] [2020-04-27T09:17:13.129030+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:17:13.144135+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:17:13.154153+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:17:13.159892+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:17:14.087336+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a33419"},"request_uri":"http://localhost:8000/_wdt/a33419","method":"GET"} [] [2020-04-27T09:21:34.175256+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:21:34.212187+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:21:34.251434+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:21:34.275822+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:21:35.538580+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"7870fc"},"request_uri":"http://localhost:8000/_wdt/7870fc","method":"GET"} [] [2020-04-27T09:24:11.384395+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:24:11.401005+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:24:11.411687+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:24:11.413715+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:24:12.445980+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d71553"},"request_uri":"http://localhost:8000/_wdt/d71553","method":"GET"} [] [2020-04-27T09:25:35.255084+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:25:35.287377+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:25:35.442904+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:25:35.445531+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:25:36.191372+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"3d9b97"},"request_uri":"http://localhost:8000/_wdt/3d9b97","method":"GET"} [] [2020-04-27T09:25:45.829835+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:25:45.847180+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:25:45.873142+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:25:45.875505+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:25:47.256848+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c72868"},"request_uri":"http://localhost:8000/_wdt/c72868","method":"GET"} [] [2020-04-27T09:26:52.784962+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:26:52.803649+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:26:52.819126+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:26:52.821061+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:26:53.966628+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"72426d"},"request_uri":"http://localhost:8000/_wdt/72426d","method":"GET"} [] [2020-04-27T09:31:54.229058+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:31:54.255720+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:31:54.288985+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:31:54.293457+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:31:55.324019+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9c35ac"},"request_uri":"http://localhost:8000/_wdt/9c35ac","method":"GET"} [] [2020-04-27T09:35:14.107486+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:35:14.135503+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:35:14.162763+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:35:14.164893+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:35:15.497019+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"565c74"},"request_uri":"http://localhost:8000/_wdt/565c74","method":"GET"} [] [2020-04-27T09:49:17.704710+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:49:17.718907+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:49:17.732988+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:49:17.734401+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:49:18.474791+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b27961"},"request_uri":"http://localhost:8000/_wdt/b27961","method":"GET"} [] [2020-04-27T09:49:44.415467+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:49:44.438057+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:49:44.454897+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:49:44.462313+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:49:45.258552+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9a3794"},"request_uri":"http://localhost:8000/_wdt/9a3794","method":"GET"} [] [2020-04-27T09:51:26.119524+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:51:26.134193+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:51:26.154303+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:51:26.156542+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:51:27.083248+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"390b15"},"request_uri":"http://localhost:8000/_wdt/390b15","method":"GET"} [] [2020-04-27T09:51:40.425697+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:51:40.441179+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:51:40.448300+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:51:40.449727+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:51:41.400879+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"2d5ee5"},"request_uri":"http://localhost:8000/_wdt/2d5ee5","method":"GET"} [] [2020-04-27T09:53:19.221122+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:53:19.240465+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:53:19.270425+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:53:19.271822+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:53:20.157495+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"397f0c"},"request_uri":"http://localhost:8000/_wdt/397f0c","method":"GET"} [] [2020-04-27T09:56:17.931282+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:56:17.946732+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:56:17.955525+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:56:17.957602+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:56:19.134643+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9f4125"},"request_uri":"http://localhost:8000/_wdt/9f4125","method":"GET"} [] [2020-04-27T09:56:20.982230+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:56:21.000387+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:56:21.012054+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:56:21.013461+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:56:22.051797+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"70f8bc"},"request_uri":"http://localhost:8000/_wdt/70f8bc","method":"GET"} [] [2020-04-27T09:56:46.937682+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T09:56:46.960785+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T09:56:46.978963+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T09:56:46.981298+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T09:56:48.016077+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e32457"},"request_uri":"http://localhost:8000/_wdt/e32457","method":"GET"} [] [2020-04-27T10:06:03.520117+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:06:03.550798+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:06:03.571621+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:06:03.574616+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:06:04.794943+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"454a3b"},"request_uri":"http://localhost:8000/_wdt/454a3b","method":"GET"} [] [2020-04-27T10:09:55.749348+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:09:55.773156+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:09:55.817562+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:09:55.821188+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:09:56.905407+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fbe5a3"},"request_uri":"http://localhost:8000/_wdt/fbe5a3","method":"GET"} [] [2020-04-27T10:17:44.322835+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:17:44.335481+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:17:44.355833+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:17:44.358782+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:17:45.513241+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b2604a"},"request_uri":"http://localhost:8000/_wdt/b2604a","method":"GET"} [] [2020-04-27T10:18:26.974075+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:18:27.034779+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:18:27.047015+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:18:27.051190+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:18:28.180250+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f27dd5"},"request_uri":"http://localhost:8000/_wdt/f27dd5","method":"GET"} [] [2020-04-27T10:19:10.290108+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:19:10.302053+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:19:10.318694+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:19:10.320118+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:19:11.513946+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"61cc52"},"request_uri":"http://localhost:8000/_wdt/61cc52","method":"GET"} [] [2020-04-27T10:20:03.795949+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:20:03.829022+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:20:03.844812+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:20:03.847469+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:20:05.038567+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"81f71b"},"request_uri":"http://localhost:8000/_wdt/81f71b","method":"GET"} [] [2020-04-27T10:20:44.042626+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:20:44.055510+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:20:44.069301+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:20:44.071510+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:20:45.078944+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"30b5a8"},"request_uri":"http://localhost:8000/_wdt/30b5a8","method":"GET"} [] [2020-04-27T10:21:58.953491+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T10:21:58.967406+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T10:21:58.975666+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T10:21:58.977501+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T10:22:00.001131+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a39b90"},"request_uri":"http://localhost:8000/_wdt/a39b90","method":"GET"} [] [2020-04-27T12:05:41.911163+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:05:41.985660+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:05:42.050582+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:05:42.053668+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:05:43.588365+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0dc2c8"},"request_uri":"http://localhost:8000/_wdt/0dc2c8","method":"GET"} [] [2020-04-27T12:10:41.759181+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:10:41.775391+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:10:41.793914+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:10:41.796086+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:10:42.775801+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f7f410"},"request_uri":"http://localhost:8000/_wdt/f7f410","method":"GET"} [] [2020-04-27T12:11:19.878470+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:11:19.891091+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:11:19.898426+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:11:19.899614+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:11:20.602352+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6d3551"},"request_uri":"http://localhost:8000/_wdt/6d3551","method":"GET"} [] [2020-04-27T12:17:40.375031+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:17:40.391639+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:17:40.419905+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:17:40.422161+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:17:41.238826+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"8c143a"},"request_uri":"http://localhost:8000/_wdt/8c143a","method":"GET"} [] [2020-04-27T12:18:21.858571+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:18:21.872251+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:18:21.887313+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:18:21.888831+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:18:22.907201+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"669dcb"},"request_uri":"http://localhost:8000/_wdt/669dcb","method":"GET"} [] [2020-04-27T12:18:26.575240+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:18:26.589921+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:18:26.597116+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:18:26.598941+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:18:27.769049+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"db1d2d"},"request_uri":"http://localhost:8000/_wdt/db1d2d","method":"GET"} [] [2020-04-27T12:18:51.848020+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:18:51.863271+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:18:51.872835+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:18:51.874595+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:18:53.113258+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ef2a54"},"request_uri":"http://localhost:8000/_wdt/ef2a54","method":"GET"} [] [2020-04-27T12:19:13.859520+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:19:13.873246+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:19:13.889975+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:19:13.891489+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:19:14.924883+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"584a6d"},"request_uri":"http://localhost:8000/_wdt/584a6d","method":"GET"} [] [2020-04-27T12:20:05.959459+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:20:05.973530+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:20:05.983785+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:20:05.985995+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:20:07.048091+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"16742f"},"request_uri":"http://localhost:8000/_wdt/16742f","method":"GET"} [] [2020-04-27T12:20:31.495545+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:20:31.511533+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:20:31.522304+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:20:31.524714+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:20:32.549803+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ef6e98"},"request_uri":"http://localhost:8000/_wdt/ef6e98","method":"GET"} [] [2020-04-27T12:20:34.916129+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:20:34.931717+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:20:34.940134+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:20:34.942878+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:20:36.137566+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fde0e2"},"request_uri":"http://localhost:8000/_wdt/fde0e2","method":"GET"} [] [2020-04-27T12:22:06.976712+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:22:07.000382+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:22:07.014315+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:22:07.016562+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:22:08.230539+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0190a0"},"request_uri":"http://localhost:8000/_wdt/0190a0","method":"GET"} [] [2020-04-27T12:23:37.953992+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:23:37.972603+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:23:37.986782+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:23:37.988303+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:23:39.221289+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f66c1a"},"request_uri":"http://localhost:8000/_wdt/f66c1a","method":"GET"} [] [2020-04-27T12:33:03.386793+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:33:03.417045+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:33:03.450523+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:33:03.453117+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:33:04.645714+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6374e5"},"request_uri":"http://localhost:8000/_wdt/6374e5","method":"GET"} [] [2020-04-27T12:33:49.512301+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:33:49.526242+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:33:49.539871+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:33:49.542660+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:33:50.422583+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"df482a"},"request_uri":"http://localhost:8000/_wdt/df482a","method":"GET"} [] [2020-04-27T12:36:50.793546+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:36:50.854636+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:36:50.909686+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:36:50.914765+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:36:52.436639+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9e4cfd"},"request_uri":"http://localhost:8000/_wdt/9e4cfd","method":"GET"} [] [2020-04-27T12:38:27.638009+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:38:27.663837+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:38:27.685075+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:38:27.688828+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:38:29.376932+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"1d0cfa"},"request_uri":"http://localhost:8000/_wdt/1d0cfa","method":"GET"} [] [2020-04-27T12:39:24.660120+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:39:24.677611+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:39:24.686373+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:39:24.687564+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:39:25.800515+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6ede7c"},"request_uri":"http://localhost:8000/_wdt/6ede7c","method":"GET"} [] [2020-04-27T12:39:42.716601+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:39:42.735564+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:39:42.751851+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:39:42.754618+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:39:43.592076+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cbdaa2"},"request_uri":"http://localhost:8000/_wdt/cbdaa2","method":"GET"} [] [2020-04-27T12:40:07.215022+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:40:07.232744+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:40:07.253224+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:40:07.255646+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:40:08.462162+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d9900f"},"request_uri":"http://localhost:8000/_wdt/d9900f","method":"GET"} [] [2020-04-27T12:40:09.942576+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:40:09.951916+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:40:09.959240+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:40:09.962068+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:40:11.116385+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"07417f"},"request_uri":"http://localhost:8000/_wdt/07417f","method":"GET"} [] [2020-04-27T12:42:05.615234+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:42:05.625464+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:42:05.641365+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:42:05.645784+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:42:06.716272+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c4fc66"},"request_uri":"http://localhost:8000/_wdt/c4fc66","method":"GET"} [] [2020-04-27T12:42:42.219933+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:42:42.237076+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:42:42.250026+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:42:42.252190+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:42:43.257957+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"04b3f2"},"request_uri":"http://localhost:8000/_wdt/04b3f2","method":"GET"} [] [2020-04-27T12:42:44.266972+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:42:44.280387+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:42:44.290556+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:42:44.292727+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:42:45.454177+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"cc68b8"},"request_uri":"http://localhost:8000/_wdt/cc68b8","method":"GET"} [] [2020-04-27T12:42:53.480571+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:42:53.494662+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:42:53.502874+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:42:53.505461+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:42:54.662801+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"743c56"},"request_uri":"http://localhost:8000/_wdt/743c56","method":"GET"} [] [2020-04-27T12:43:05.172694+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:43:05.198656+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:43:05.215706+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:43:05.217330+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:43:06.481287+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"172601"},"request_uri":"http://localhost:8000/_wdt/172601","method":"GET"} [] [2020-04-27T12:54:52.346212+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:54:52.374060+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:54:52.388156+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:54:52.393311+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:54:53.663210+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"338284"},"request_uri":"http://localhost:8000/_wdt/338284","method":"GET"} [] [2020-04-27T12:55:21.678670+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:55:21.699500+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:55:21.720427+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:55:21.721953+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:55:23.104126+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5f3b50"},"request_uri":"http://localhost:8000/_wdt/5f3b50","method":"GET"} [] [2020-04-27T12:56:53.919162+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:56:53.938326+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:56:53.954384+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:56:53.956123+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:56:54.924571+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5892f6"},"request_uri":"http://localhost:8000/_wdt/5892f6","method":"GET"} [] [2020-04-27T12:58:28.909405+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T12:58:28.927857+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T12:58:28.941138+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T12:58:28.943859+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T12:58:29.984155+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ad206c"},"request_uri":"http://localhost:8000/_wdt/ad206c","method":"GET"} [] [2020-04-27T13:00:16.501572+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-27T13:00:16.521697+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-27T13:00:16.535296+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-27T13:00:16.537489+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-27T13:00:17.345309+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5be06b"},"request_uri":"http://localhost:8000/_wdt/5be06b","method":"GET"} [] [2020-04-28T07:55:32.361206+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-28T07:55:32.506405+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T07:55:32.623307+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T07:55:32.645824+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T07:55:34.035794+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"c248c5"},"request_uri":"http://localhost:8000/_wdt/c248c5","method":"GET"} [] [2020-04-28T07:56:20.736065+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-28T07:56:20.751405+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T07:56:20.772389+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T07:56:20.773663+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T07:56:21.677919+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"eb1b32"},"request_uri":"http://localhost:8000/_wdt/eb1b32","method":"GET"} [] [2020-04-28T07:57:20.714502+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-28T07:57:21.494815+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"0f4f49"},"request_uri":"http://localhost:8000/_wdt/0f4f49","method":"GET"} [] [2020-04-28T07:59:45.916003+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-28T07:59:46.633615+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5d6dde"},"request_uri":"http://localhost:8000/_wdt/5d6dde","method":"GET"} [] [2020-04-28T08:01:20.874146+00:00] request.INFO: Matched route "tarif". {"route":"tarif","route_parameters":{"_route":"tarif","_controller":"App\\Controller\\HomeController::tarif"},"request_uri":"http://localhost:8000/tarifs","method":"GET"} [] [2020-04-28T08:01:21.617557+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"d973ac"},"request_uri":"http://localhost:8000/_wdt/d973ac","method":"GET"} [] [2020-04-28T08:29:23.975316+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-28T08:29:24.033226+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T08:29:24.063364+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T08:29:24.066191+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T08:29:24.759832+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e641b5"},"request_uri":"http://localhost:8000/_wdt/e641b5","method":"GET"} [] [2020-04-28T08:33:31.854656+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-28T08:33:31.881761+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T08:33:31.901518+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T08:33:31.905209+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T08:33:32.590055+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e64e2c"},"request_uri":"http://localhost:8000/_wdt/e64e2c","method":"GET"} [] [2020-04-28T08:36:18.024562+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T08:36:19.094066+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"60bafa"},"request_uri":"http://localhost:8000/_wdt/60bafa","method":"GET"} [] [2020-04-28T08:36:24.058136+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T08:36:24.746061+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"aa5b4e"},"request_uri":"http://localhost:8000/_wdt/aa5b4e","method":"GET"} [] [2020-04-28T08:41:42.918173+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T08:41:43.572283+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b8d453"},"request_uri":"http://localhost:8000/_wdt/b8d453","method":"GET"} [] [2020-04-28T08:43:19.501793+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T08:43:20.332854+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ddbd1a"},"request_uri":"http://localhost:8000/_wdt/ddbd1a","method":"GET"} [] [2020-04-28T08:55:08.605242+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-28T08:55:08.642555+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T08:55:08.671828+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T08:55:08.674749+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T08:55:09.333589+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"b9d0f1"},"request_uri":"http://localhost:8000/_wdt/b9d0f1","method":"GET"} [] [2020-04-28T08:55:19.611459+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-28T08:55:19.632966+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T08:55:19.649419+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T08:55:19.651058+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T08:55:20.573246+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"094f46"},"request_uri":"http://localhost:8000/_wdt/094f46","method":"GET"} [] [2020-04-28T08:55:51.847282+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-28T08:55:51.865674+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-28T08:55:51.896951+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T08:55:51.898726+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T08:55:52.211903+00:00] request.INFO: Matched route "actuality.show". {"route":"actuality.show","route_parameters":{"_route":"actuality.show","_controller":"App\\Controller\\ActualityController::show","slug":"test","id":"6"},"request_uri":"http://localhost:8000/actualites/test-6","method":"GET"} [] [2020-04-28T08:55:52.226391+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 WHERE t0.id = ? ["6"] [] [2020-04-28T08:55:52.240123+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T08:55:52.243492+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T08:55:53.572908+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"4f1147"},"request_uri":"http://localhost:8000/_wdt/4f1147","method":"GET"} [] [2020-04-28T08:55:53.609109+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ce6ca8"},"request_uri":"http://localhost:8000/_wdt/ce6ca8","method":"GET"} [] [2020-04-28T09:00:18.164611+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:00:18.804800+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fea53f"},"request_uri":"http://localhost:8000/_wdt/fea53f","method":"GET"} [] [2020-04-28T09:01:23.334163+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:01:24.161314+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9ac6a4"},"request_uri":"http://localhost:8000/_wdt/9ac6a4","method":"GET"} [] [2020-04-28T09:13:39.388770+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:13:40.281514+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"179b3c"},"request_uri":"http://localhost:8000/_wdt/179b3c","method":"GET"} [] [2020-04-28T09:14:47.759102+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:14:48.683056+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"49ab98"},"request_uri":"http://localhost:8000/_wdt/49ab98","method":"GET"} [] [2020-04-28T09:16:40.502906+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:16:41.184614+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"760428"},"request_uri":"http://localhost:8000/_wdt/760428","method":"GET"} [] [2020-04-28T09:17:11.974710+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:17:12.780539+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f72b2a"},"request_uri":"http://localhost:8000/_wdt/f72b2a","method":"GET"} [] [2020-04-28T09:19:55.770426+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:19:56.579496+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"16a969"},"request_uri":"http://localhost:8000/_wdt/16a969","method":"GET"} [] [2020-04-28T09:21:28.950905+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:21:29.908108+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"095882"},"request_uri":"http://localhost:8000/_wdt/095882","method":"GET"} [] [2020-04-28T09:22:43.183163+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:22:44.041485+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9ef081"},"request_uri":"http://localhost:8000/_wdt/9ef081","method":"GET"} [] [2020-04-28T09:23:38.528067+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T09:23:39.490420+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ab7c86"},"request_uri":"http://localhost:8000/_wdt/ab7c86","method":"GET"} [] [2020-04-28T09:27:41.175114+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:27:41.705633+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"a9e541"},"request_uri":"http://localhost:8000/_wdt/a9e541","method":"GET"} [] [2020-04-28T09:28:45.396976+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:28:46.291164+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"201091"},"request_uri":"http://localhost:8000/_wdt/201091","method":"GET"} [] [2020-04-28T09:34:58.325185+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:34:59.386790+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dd509a"},"request_uri":"http://localhost:8000/_wdt/dd509a","method":"GET"} [] [2020-04-28T09:35:28.770044+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:35:29.683729+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9ec800"},"request_uri":"http://localhost:8000/_wdt/9ec800","method":"GET"} [] [2020-04-28T09:36:15.389057+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:36:16.260550+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"ed49e2"},"request_uri":"http://localhost:8000/_wdt/ed49e2","method":"GET"} [] [2020-04-28T09:36:21.636412+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:36:22.485851+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e92563"},"request_uri":"http://localhost:8000/_wdt/e92563","method":"GET"} [] [2020-04-28T09:37:45.973925+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:37:47.100885+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6c566d"},"request_uri":"http://localhost:8000/_wdt/6c566d","method":"GET"} [] [2020-04-28T09:37:48.979784+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:37:50.029608+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"dc058c"},"request_uri":"http://localhost:8000/_wdt/dc058c","method":"GET"} [] [2020-04-28T09:39:11.648088+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:39:12.476576+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"fc92ad"},"request_uri":"http://localhost:8000/_wdt/fc92ad","method":"GET"} [] [2020-04-28T09:40:29.084385+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:40:29.856289+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f44fcd"},"request_uri":"http://localhost:8000/_wdt/f44fcd","method":"GET"} [] [2020-04-28T09:41:04.926311+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T09:41:05.744258+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"f941ba"},"request_uri":"http://localhost:8000/_wdt/f941ba","method":"GET"} [] [2020-04-28T09:43:54.214705+00:00] request.INFO: Matched route "actualites". {"route":"actualites","route_parameters":{"_route":"actualites","_controller":"App\\Controller\\ActualityController::index"},"request_uri":"http://localhost:8000/actualites","method":"GET"} [] [2020-04-28T09:43:54.250537+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T09:43:54.271047+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T09:43:54.276150+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T09:43:54.864067+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"5504d9"},"request_uri":"http://localhost:8000/_wdt/5504d9","method":"GET"} [] [2020-04-28T12:03:55.343460+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-28T12:03:55.392644+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T12:03:55.434370+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T12:03:55.439413+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T12:03:56.754268+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"e437b1"},"request_uri":"http://localhost:8000/_wdt/e437b1","method":"GET"} [] [2020-04-28T12:06:18.725884+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T12:06:19.670134+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"bd105b"},"request_uri":"http://localhost:8000/_wdt/bd105b","method":"GET"} [] [2020-04-28T12:07:22.011868+00:00] request.INFO: Matched route "home". {"route":"home","route_parameters":{"_route":"home","_controller":"App\\Controller\\HomeController::index"},"request_uri":"http://localhost:8000/","method":"GET"} [] [2020-04-28T12:07:22.026722+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.title AS title_2, t0.sub_title AS sub_title_3, t0.texte AS texte_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.category_id AS category_id_7 FROM actuality t0 [] [] [2020-04-28T12:07:22.039640+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.filename AS filename_2, t0.actuality_id AS actuality_id_3 FROM pictures t0 WHERE t0.actuality_id = ? [6] [] [2020-04-28T12:07:22.041396+00:00] doctrine.DEBUG: SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ? [1] [] [2020-04-28T12:07:23.189936+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"976b02"},"request_uri":"http://localhost:8000/_wdt/976b02","method":"GET"} [] [2020-04-28T12:11:50.545387+00:00] request.INFO: Matched route "adeline". {"route":"adeline","route_parameters":{"_route":"adeline","_controller":"App\\Controller\\HomeController::adeline"},"request_uri":"http://localhost:8000/adeline","method":"GET"} [] [2020-04-28T12:11:51.552309+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"116880"},"request_uri":"http://localhost:8000/_wdt/116880","method":"GET"} [] [2020-04-28T12:13:22.496917+00:00] request.INFO: Matched route "adoption". {"route":"adoption","route_parameters":{"_route":"adoption","_controller":"App\\Controller\\HomeController::adoption"},"request_uri":"http://localhost:8000/adoption","method":"GET"} [] [2020-04-28T12:13:23.527016+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"6c020f"},"request_uri":"http://localhost:8000/_wdt/6c020f","method":"GET"} [] [2020-04-28T12:14:23.857973+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-28T12:14:25.011853+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"9e60f4"},"request_uri":"http://localhost:8000/_wdt/9e60f4","method":"GET"} [] [2020-04-28T12:23:33.361313+00:00] request.INFO: Matched route "contact". {"route":"contact","route_parameters":{"_route":"contact","_controller":"App\\Controller\\HomeController::contact"},"request_uri":"http://localhost:8000/contact","method":"GET"} [] [2020-04-28T12:23:34.536326+00:00] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_route":"_wdt","_controller":"web_profiler.controller.profiler::toolbarAction","token":"130481"},"request_uri":"http://localhost:8000/_wdt/130481","method":"GET"} []