Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#1098 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/runtime/frankenphp-symfony/src/Runner.php
->
handle
(line 38)
$handler = function () use ($server, &$sfRequest, &$sfResponse): void {// Merge the environment variables coming from DotEnv with the ones tied to the current request$_SERVER += $server;$sfRequest = Request::createFromGlobals();$sfResponse = $this->kernel->handle($sfRequest);$sfResponse->send();};$loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in
vendor/runtime/frankenphp-symfony/src/Runner.php
frankenphp_handle_request
(line 45)
$sfResponse->send();};$loops = 0;do {$ret = \frankenphp_handle_request($handler);if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {$this->kernel->terminate($sfRequest, $sfResponse);}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 89)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/runtime/frankenphp-symfony/src/Runner.php
->
handle
(line 38)
$handler = function () use ($server, &$sfRequest, &$sfResponse): void {// Merge the environment variables coming from DotEnv with the ones tied to the current request$_SERVER += $server;$sfRequest = Request::createFromGlobals();$sfResponse = $this->kernel->handle($sfRequest);$sfResponse->send();};$loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in
vendor/runtime/frankenphp-symfony/src/Runner.php
frankenphp_handle_request
(line 45)
$sfResponse->send();};$loops = 0;do {$ret = \frankenphp_handle_request($handler);if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {$this->kernel->terminate($sfRequest, $sfResponse);}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs 35
| Level | Message |
|---|---|
| info 01:24:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=request&type=request",
"method": "GET"
}
|
| info 01:24:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=http_client&type=request",
"method": "GET"
}
|
| info 01:24:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=request&type=request",
"method": "GET"
}
|
| info 01:24:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=request&type=request",
"method": "GET"
}
|
| info 01:24:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=request&type=request",
"method": "GET"
}
|
| info 01:24:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F_profiler",
"method": "GET"
}
|
| info 01:24:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=cache&type=request",
"method": "GET"
}
|
| info 01:25:55 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=http_client&type=request",
"method": "GET"
}
|
| info 01:25:55 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=request&type=request",
"method": "GET"
}
|
| info 01:25:56 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=cache&type=request",
"method": "GET"
}
|
| info 01:25:56 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=http_client&type=request",
"method": "GET"
}
|
| info 01:25:57 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=request&type=request",
"method": "GET"
}
|
| info 01:25:57 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=cache&type=request",
"method": "GET"
}
|
| info 01:25:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=http_client&type=request",
"method": "GET"
}
|
| info 01:25:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=request&type=request",
"method": "GET"
}
|
| info 01:26:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=exception&type=request",
"method": "GET"
}
|
| info 01:26:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=exception&type=request",
"method": "GET"
}
|
| info 01:26:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=request&type=request",
"method": "GET"
}
|
| info 01:26:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=http_client&type=request",
"method": "GET"
}
|
| info 01:26:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=cache&type=request",
"method": "GET"
}
|
| info 01:26:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=http_client&type=request",
"method": "GET"
}
|
| info 01:26:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=cache&type=request",
"method": "GET"
}
|
| info 01:26:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=request&type=request",
"method": "GET"
}
|
| info 01:27:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=time&type=request",
"method": "GET"
}
|
| info 01:27:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=time&type=request",
"method": "GET"
}
|
| info 01:27:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
"method": "GET"
}
|
| info 01:27:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=request&type=request",
"method": "GET"
}
|
| info 01:27:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=cache&type=request",
"method": "GET"
}
|
| info 01:27:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=exception&type=request",
"method": "GET"
}
|
| info 01:27:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=exception&type=request",
"method": "GET"
}
|
| info 01:27:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=exception&type=request",
"method": "GET"
}
|
| info 01:27:48 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=logger&type=request",
"method": "GET"
}
|
| info 01:27:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=exception&type=request",
"method": "GET"
}
|
| info 01:27:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=config&type=request",
"method": "GET"
}
|
| info 01:27:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=config&type=request",
"method": "GET"
}
|
| info 01:27:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=config&type=request",
"method": "GET"
}
|
| info 01:27:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=config&type=request",
"method": "GET"
}
|
| info 01:27:54 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=time&type=request",
"method": "GET"
}
|
| info 01:27:54 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=logger&type=request",
"method": "GET"
}
|
| info 01:27:55 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=logger&type=request",
"method": "GET"
}
|
| info 01:27:56 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=logger&type=request",
"method": "GET"
}
|
| info 01:27:56 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=logger&type=request",
"method": "GET"
}
|
| info 01:27:57 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=time&type=request",
"method": "GET"
}
|
| info 01:28:14 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=events&type=request",
"method": "GET"
}
|
| info 01:28:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=twig&type=request",
"method": "GET"
}
|
| info 01:28:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=twig&type=request",
"method": "GET"
}
|
| info 01:28:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=logger&type=request",
"method": "GET"
}
|
| info 01:28:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=router&type=request",
"method": "GET"
}
|
| info 01:28:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=time&type=request",
"method": "GET"
}
|
| info 01:28:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=config&type=request",
"method": "GET"
}
|
| info 01:29:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=router&type=request",
"method": "GET"
}
|
| info 01:29:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=twig&type=request",
"method": "GET"
}
|
| info 01:29:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=router&type=request",
"method": "GET"
}
|
| info 01:29:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=twig&type=request",
"method": "GET"
}
|
| info 01:29:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=router&type=request",
"method": "GET"
}
|
| info 01:29:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=router&type=request",
"method": "GET"
}
|
| info 01:29:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=events&type=request",
"method": "GET"
}
|
| info 01:29:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=events&type=request",
"method": "GET"
}
|
| info 01:29:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:29:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:29:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=time&type=request",
"method": "GET"
}
|
| info 01:29:13 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=config&type=request",
"method": "GET"
}
|
| info 01:29:13 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:29:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=events&type=request",
"method": "GET"
}
|
| info 01:29:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=router&type=request",
"method": "GET"
}
|
| info 01:29:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:29:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=twig&type=request",
"method": "GET"
}
|
| info 01:30:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=events&type=request",
"method": "GET"
}
|
| info 01:30:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=logger&type=request",
"method": "GET"
}
|
| info 04:33:06 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=events&type=request",
"method": "GET"
}
|
| info 01:30:22 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=router&type=request",
"method": "GET"
}
|
| info 01:30:22 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:30:23 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=twig&type=request",
"method": "GET"
}
|
| info 01:30:23 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=events&type=request",
"method": "GET"
}
|
| info 01:30:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=router&type=request",
"method": "GET"
}
|
| info 01:30:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=twig&type=request",
"method": "GET"
}
|
| info 01:30:25 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:30:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=events&type=request",
"method": "GET"
}
|
| info 01:30:33 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:30:33 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=router&type=request",
"method": "GET"
}
|
| info 01:30:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=twig&type=request",
"method": "GET"
}
|
| info 01:30:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66330a"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=config&type=request",
"method": "GET"
}
|
| info 01:30:35 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=logger&type=request",
"method": "GET"
}
|
| info 01:30:58 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0/search/results?ip=62.113.113.43",
"method": "GET"
}
|
| info 01:30:59 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 01:30:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Ffile%253A%2Fapp%2Fvendor%2Fsymfony%2Frouting%2FRouter.php%2523L188",
"method": "GET"
}
|
| error 01:31:00 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 01:31:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=103.4.250.16&type=request",
"method": "GET"
}
|
| info 01:31:01 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=messenger&type=request",
"method": "GET"
}
|
| error 01:31:01 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 01:31:44 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=config&type=request",
"method": "GET"
}
|
| info 01:31:44 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=twig&type=request",
"method": "GET"
}
|
| info 01:31:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=exception&type=request",
"method": "GET"
}
|
| info 01:31:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=events&type=request",
"method": "GET"
}
|
| info 01:31:46 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=events&type=request",
"method": "GET"
}
|
| info 01:31:46 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "72dbb0"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=events&type=request",
"method": "GET"
}
|
| info 01:31:47 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c8d944"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=events&type=request",
"method": "GET"
}
|
| info 01:31:47 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=logger&type=request",
"method": "GET"
}
|
| info 01:31:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=router&type=request",
"method": "GET"
}
|
| info 01:31:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=router&type=request",
"method": "GET"
}
|
| info 01:31:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:31:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=twig&type=request",
"method": "GET"
}
|
| info 01:31:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a1f13c"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=config&type=request",
"method": "GET"
}
|
| info 01:31:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=twig&type=request",
"method": "GET"
}
|
| info 01:31:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=messenger&type=request",
"method": "GET"
}
|
| info 01:32:26 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6f8787"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=exception&type=request",
"method": "GET"
}
|
| info 01:32:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=time&type=request",
"method": "GET"
}
|
| info 01:32:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "611363"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=request&type=request",
"method": "GET"
}
|
| info 01:32:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "acd25b"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=exception&type=request",
"method": "GET"
}
|
| info 01:32:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=time&type=request",
"method": "GET"
}
|
| info 01:32:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5459ac"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=exception&type=request",
"method": "GET"
}
|
| info 01:32:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "dd65fc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=time&type=request",
"method": "GET"
}
|
| info 01:32:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bb58c6"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=time&type=request",
"method": "GET"
}
|
| error 01:48:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 01:48:14 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| info 02:49:56 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 02:54:24 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 02:54:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=cache&type=request",
"method": "GET"
}
|
| info 02:54:25 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be",
"method": "GET"
}
|
| info 02:54:25 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07",
"method": "GET"
}
|
| info 02:54:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=cache&type=request",
"method": "GET"
}
|
| info 02:54:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=request&type=request",
"method": "GET"
}
|
| info 02:54:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=http_client&type=request",
"method": "GET"
}
|
| info 02:55:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=http_client&type=request",
"method": "GET"
}
|
| info 02:55:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=request&type=request",
"method": "GET"
}
|
| info 02:55:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=http_client&type=request",
"method": "GET"
}
|
| info 02:55:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=time&type=request",
"method": "GET"
}
|
| info 02:55:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=cache&type=request",
"method": "GET"
}
|
| info 02:55:50 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=exception&type=request",
"method": "GET"
}
|
| info 02:56:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=http_client&type=request",
"method": "GET"
}
|
| info 02:56:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=request&type=request",
"method": "GET"
}
|
| info 02:56:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=cache&type=request",
"method": "GET"
}
|
| info 02:56:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=time&type=request",
"method": "GET"
}
|
| info 02:56:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=exception&type=request",
"method": "GET"
}
|
| info 02:56:43 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=request&type=request",
"method": "GET"
}
|
| info 02:57:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=config&type=request",
"method": "GET"
}
|
| info 02:57:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=exception&type=request",
"method": "GET"
}
|
| info 02:57:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=logger&type=request",
"method": "GET"
}
|
| info 02:57:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=logger&type=request",
"method": "GET"
}
|
| info 02:57:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=exception&type=request",
"method": "GET"
}
|
| info 02:57:24 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=time&type=request",
"method": "GET"
}
|
| info 02:58:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=time&type=request",
"method": "GET"
}
|
| info 02:58:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=config&type=request",
"method": "GET"
}
|
| info 02:58:05 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=events&type=request",
"method": "GET"
}
|
| info 02:58:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=logger&type=request",
"method": "GET"
}
|
| info 02:58:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=twig&type=request",
"method": "GET"
}
|
| info 02:58:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=events&type=request",
"method": "GET"
}
|
| info 02:58:27 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=messenger&type=request",
"method": "GET"
}
|
| info 02:58:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=twig&type=request",
"method": "GET"
}
|
| info 02:58:53 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=config&type=request",
"method": "GET"
}
|
| info 02:59:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=router&type=request",
"method": "GET"
}
|
| info 02:59:53 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=twig&type=request",
"method": "GET"
}
|
| info 02:59:53 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=messenger&type=request",
"method": "GET"
}
|
| info 02:59:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=twig&type=request",
"method": "GET"
}
|
| info 03:00:00 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=messenger&type=request",
"method": "GET"
}
|
| info 03:00:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=messenger&type=request",
"method": "GET"
}
|
| info 03:00:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=router&type=request",
"method": "GET"
}
|
| info 03:01:02 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "28fd99"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99/search/results?ip=103.4.250.16",
"method": "GET"
}
|
| info 03:01:13 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 03:01:13 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 03:01:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=events&type=request",
"method": "GET"
}
|
| info 03:01:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=router&type=request",
"method": "GET"
}
|
| info 03:01:37 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c1a042"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=config&type=request",
"method": "GET"
}
|
| info 03:01:37 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=events&type=request",
"method": "GET"
}
|
| info 03:01:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af",
"method": "GET"
}
|
| info 03:02:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=cache&type=request",
"method": "GET"
}
|
| info 03:02:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=http_client&type=request",
"method": "GET"
}
|
| info 03:03:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=request&type=request",
"method": "GET"
}
|
| info 03:03:15 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=exception&type=request",
"method": "GET"
}
|
| info 03:03:40 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=time&type=request",
"method": "GET"
}
|
| info 03:04:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=logger&type=request",
"method": "GET"
}
|
| info 03:04:17 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=config&type=request",
"method": "GET"
}
|
| info 03:04:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=events&type=request",
"method": "GET"
}
|
| info 03:05:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=twig&type=request",
"method": "GET"
}
|
| info 03:05:43 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 03:05:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:43 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:43 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.bak"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.save"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/admin/.env"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:44 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:45 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:45 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:45 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws-config.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:45 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws.config.js"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:45 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/_debugbar/"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:46 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/debugbar/"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:46 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/debug/"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:46 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:46 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:46 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test.php"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:46 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.aws/credentials"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:47 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.aws/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:47 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws-credentials"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:48 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws.json"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:48 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.s3cfg"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:48 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/HEAD"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:05:48 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 03:05:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=62.113.113.43&type=request",
"method": "GET"
}
|
| info 03:06:04 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 03:06:34 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=router&type=request",
"method": "GET"
}
|
| error 03:23:09 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 03:34:38 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| info 03:34:45 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 03:34:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156 {
"exception": {}
}
|
| error 03:34:55 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 04:15:11 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| error 04:15:11 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico" (from "https://resasfa.elementroot.tech/")" at RouterListener.php line 156 {
"exception": {}
}
|
| error 04:25:09 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 04:25:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=http_client&type=request",
"method": "GET"
}
|
| info 04:25:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=cache&type=request",
"method": "GET"
}
|
| info 04:25:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=http_client&type=request",
"method": "GET"
}
|
| info 04:25:46 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=request&type=request",
"method": "GET"
}
|
| info 04:26:56 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=exception&type=request",
"method": "GET"
}
|
| info 04:27:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=time&type=request",
"method": "GET"
}
|
| info 04:27:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=request&type=request",
"method": "GET"
}
|
| info 04:27:47 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=logger&type=request",
"method": "GET"
}
|
| info 04:28:28 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=exception&type=request",
"method": "GET"
}
|
| info 04:29:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=config&type=request",
"method": "GET"
}
|
| info 04:29:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=time&type=request",
"method": "GET"
}
|
| info 04:29:55 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=events&type=request",
"method": "GET"
}
|
| info 04:30:46 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=twig&type=request",
"method": "GET"
}
|
| info 04:31:07 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=router&type=request",
"method": "GET"
}
|
| info 04:31:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=logger&type=request",
"method": "GET"
}
|
| info 04:32:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07?panel=messenger&type=request",
"method": "GET"
}
|
| info 04:32:10 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=config&type=request",
"method": "GET"
}
|
| info 04:33:32 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=router&type=request",
"method": "GET"
}
|
| info 04:33:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=messenger&type=request",
"method": "GET"
}
|
| info 04:34:03 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be?panel=twig&type=request",
"method": "GET"
}
|
| info 04:34:38 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "593e07"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/593e07/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 04:35:01 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "c5f7be"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 04:37:58 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "587f43"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/587f43",
"method": "GET"
}
|
| info 04:48:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565",
"method": "GET"
}
|
| error 04:48:49 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 04:48:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=http_client&type=request",
"method": "GET"
}
|
| info 04:48:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=cache&type=request",
"method": "GET"
}
|
| info 04:49:30 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=http_client&type=request",
"method": "GET"
}
|
| info 04:49:31 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=request&type=request",
"method": "GET"
}
|
| info 04:50:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=time&type=request",
"method": "GET"
}
|
| info 04:50:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=exception&type=request",
"method": "GET"
}
|
| info 04:50:41 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=config&type=request",
"method": "GET"
}
|
| info 04:50:42 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=logger&type=request",
"method": "GET"
}
|
| info 04:51:01 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=events&type=request",
"method": "GET"
}
|
| info 04:51:01 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=logger&type=request",
"method": "GET"
}
|
| info 04:51:23 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=config&type=request",
"method": "GET"
}
|
| info 04:51:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=twig&type=request",
"method": "GET"
}
|
| info 04:52:19 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=router&type=request",
"method": "GET"
}
|
| info 04:52:25 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=events&type=request",
"method": "GET"
}
|
| info 04:53:12 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af?panel=messenger&type=request",
"method": "GET"
}
|
| info 04:53:17 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "fa48af"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af/search/results?ip=216.73.216.2",
"method": "GET"
}
|
| info 04:53:38 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=router&type=request",
"method": "GET"
}
|
| info 04:53:43 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29/search/results?ip=93.123.109.214",
"method": "GET"
}
|
| info 04:54:29 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=messenger&type=request",
"method": "GET"
}
|
| info 04:55:04 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=twig&type=request",
"method": "GET"
}
|
| info 04:55:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=request&type=request",
"method": "GET"
}
|
| info 04:55:16 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=cache&type=request",
"method": "GET"
}
|
| info 04:55:40 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=time&type=request",
"method": "GET"
}
|
| info 04:55:40 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "6fee29"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/6fee29?panel=exception&type=request",
"method": "GET"
}
|
| error 05:47:35 |
Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156 {
"exception": {}
}
|
| info 05:47:35 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "edf4bc"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc",
"method": "GET"
}
|
| info 05:52:56 |
Matched route "app_realtime". {
"route": "app_realtime",
"route_parameters": {
"_route": "app_realtime",
"_controller": "App\\Controller\\RealtimeController::index"
},
"request_uri": "https://resasfa.elementroot.tech/",
"method": "GET"
}
|
| info 06:00:08 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "8b2d82"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82",
"method": "GET"
}
|
| info 06:19:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=twig&type=request",
"method": "GET"
}
|
| info 06:19:51 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=messenger&type=request",
"method": "GET"
}
|
| info 06:19:52 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=cache&type=request",
"method": "GET"
}
|
| info 06:20:37 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=http_client&type=request",
"method": "GET"
}
|
| info 06:20:47 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=logger&type=request",
"method": "GET"
}
|
| info 06:24:01 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=time&type=request",
"method": "GET"
}
|
| info 06:20:47 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=request&type=request",
"method": "GET"
}
|
| info 06:20:57 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=exception&type=request",
"method": "GET"
}
|
| info 06:21:49 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=events&type=request",
"method": "GET"
}
|
| info 06:22:59 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=config&type=request",
"method": "GET"
}
|
| info 06:23:45 |
Matched route "_profiler_search_results". {
"route": "_profiler_search_results",
"route_parameters": {
"_route": "_profiler_search_results",
"_controller": "web_profiler.controller.profiler::searchResultsAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565/search/results?ip=93.123.109.214",
"method": "GET"
}
|
| info 06:23:45 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "584565"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/584565?panel=router&type=request",
"method": "GET"
}
|
| info 06:25:18 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=93.123.109.214&type=request",
"method": "GET"
}
|
| info 06:27:11 |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc6e16"
},
"request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/runtime/frankenphp-symfony/src/Runner.php:38)
at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
at frankenphp_handle_request(object(Closure))
(vendor/runtime/frankenphp-symfony/src/Runner.php:45)
at Runtime\FrankenPhpSymfony\Runner->run()
(vendor/autoload_runtime.php:29)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70/')
(vendor/symfony/routing/Matcher/UrlMatcher.php:89)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/runtime/frankenphp-symfony/src/Runner.php:38)
at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
at frankenphp_handle_request(object(Closure))
(vendor/runtime/frankenphp-symfony/src/Runner.php:45)
at Runtime\FrankenPhpSymfony\Runner->run()
(vendor/autoload_runtime.php:29)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|