Error 404 Not Found

GET https://dev.siuntupaieska.lt/robots.txt

Exceptions

No route found for "GET https://dev.siuntupaieska.lt/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#767
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/dev.sendparcel.com/releases/22/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

None of the routers in the chain matched this request GET /robots.txt HTTP/1.1 Accept: */* Accept-Encoding: gzip, br Cdn-Loop: cloudflare; loops=1 Cf-Connecting-Ip: 81.167.26.57 Cf-Ipcountry: NO Cf-Ray: 9fba1cbffbb749c5-OSL Cf-Visitor: {"scheme":"https"} Connection: Keep-Alive Host: dev.siuntupaieska.lt User-Agent: Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/) X-Forwarded-For: 81.167.26.57 X-Forwarded-Proto: https X-Php-Ob-Level: 1

  1. $info = $request
  2. ? "this request\n$request"
  3. : "url '$pathinfo'";
  4. throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
  5. }
  6. /**
  7. * {@inheritdoc}
  8. *
  1. *
  2. * Loops through all routes and tries to match the passed request.
  3. */
  4. public function matchRequest(Request $request): array
  5. {
  6. return $this->doMatch($request->getPathInfo(), $request);
  7. }
  8. /**
  9. * Loops through all routers and tries to match the passed request or url.
  10. *
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/dev.sendparcel.com/releases/22/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 15:52:16 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c826a1"
    },
    "request_uri": "https://dev.sendparcel.com/_profiler/c826a1",
    "method": "GET"
}
DEBUG 15:52:16 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 3
}
DEBUG 15:52:16 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 15:52:16 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 15:52:16 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 15:52:16 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 15:52:16 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 15:52:16 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 15:52:16 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
INFO 15:52:17 deprecation User Deprecated: Support for MySQL < 8 is deprecated and will be removed in DBAL 5 (AbstractMySQLDriver.php:75 called by AbstractDriverMiddleware.php:32, https://github.com/doctrine/dbal/pull/6343, package doctrine/dbal)
{
    "exception": {}
}
INFO 15:52:17 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "localhost",
        "port": 3306,
        "user": "sp_trans",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "sp_trans",
        "serverVersion": "8.0",
        "charset": "utf8"
    }
}
DEBUG 15:52:17 doctrine Executing query: SELECT MAX(l0_.updated_at) AS sclr_0 FROM lexik_trans_unit_translations l0_
{
    "sql": "SELECT MAX(l0_.updated_at) AS sclr_0 FROM lexik_trans_unit_translations l0_"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "App\EventListener\RateLimitListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\RateLimitListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:52:17 event Notified event "kernel.request" to listener "Lexik\Bundle\TranslationBundle\EventDispatcher\CleanTranslationCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Lexik\\Bundle\\TranslationBundle\\EventDispatcher\\CleanTranslationCacheListener::onKernelRequest"
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\S3\S3Client::getHeadObjectMiddleware():616}:617}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\S3\S3Client::getDisableExpressSessionAuthMiddleware():717}:718}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\HandlerList::__construct(): Implicitly marking parameter $handler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\HandlerList::interpose(): Implicitly marking parameter $fn as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\ApiProvider::__construct(): Implicitly marking parameter $manifest as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\Service::createErrorParser(): Implicitly marking parameter $api as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\Parser\RestXmlParser::__construct(): Implicitly marking parameter $parser as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\ErrorParser\XmlErrorParser::__construct(): Implicitly marking parameter $api as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\ErrorParser\XmlErrorParser::__construct(): Implicitly marking parameter $parser as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\ErrorParser\XmlErrorParser::__invoke(): Implicitly marking parameter $command as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\ErrorParser\AbstractErrorParser::__construct(): Implicitly marking parameter $api as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\ErrorParser\AbstractErrorParser::populateShape(): Implicitly marking parameter $command as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\RejectedPromise::then(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\RejectedPromise::then(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\PromiseInterface::then(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\PromiseInterface::then(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\Utils::queue(): Implicitly marking parameter $assign as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\Promise::__construct(): Implicitly marking parameter $waitFn as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\Promise::__construct(): Implicitly marking parameter $cancelFn as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\Promise::then(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\Promise::then(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\FulfilledPromise::then(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Promise\FulfilledPromise::then(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\Serializer\RestXmlSerializer::__construct(): Implicitly marking parameter $xmlBody as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Psr7\Uri::isSameDocumentReference(): Implicitly marking parameter $base as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getScheme()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getAuthority()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getUserInfo()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getHost()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getPort()" might add "?int" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getPath()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getQuery()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::getFragment()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withScheme()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withUserInfo()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withHost()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withPort()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withPath()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withQuery()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation User Deprecated: Method "Psr\Http\Message\UriInterface::withFragment()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::sourceFile():34}:39}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Middleware::validation(): Implicitly marking parameter $validator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::validation():73}:74}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::tap():178}:179}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Middleware::retry(): Implicitly marking parameter $decider as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Middleware::retry(): Implicitly marking parameter $delay as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::contentType():253}:254}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::history():322}:323}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::mapRequest():354}:355}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::mapCommand():375}:376}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::mapResult():395}:396}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:{closure:Aws\Middleware::timer():407}:408}(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Token\SsoTokenProvider::__construct(): Implicitly marking parameter $ssoOidcClient as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Auth\AuthSchemeResolver::__construct(): Implicitly marking parameter $tokenProvider as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: {closure:Aws\RetryMiddleware::createDefaultDecider():86}(): Implicitly marking parameter $result as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\RetryMiddleware::__invoke(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Api\Validator::__construct(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\Handler\GuzzleV6\GuzzleHandler::__construct(): Implicitly marking parameter $client as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\HandlerStack::create(): Implicitly marking parameter $handler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\HandlerStack::__construct(): Implicitly marking parameter $handler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Handler\StreamHandler::invokeStats(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Middleware::tap(): Implicitly marking parameter $before as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Middleware::tap(): Implicitly marking parameter $after as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: GuzzleHttp\Middleware::retry(): Implicitly marking parameter $delay as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\IdempotencyTokenMiddleware::wrap(): Implicitly marking parameter $bytesGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\IdempotencyTokenMiddleware::__construct(): Implicitly marking parameter $bytesGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\IdempotencyTokenMiddleware::__invoke(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\S3\SSECMiddleware::__invoke(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\S3\PutObjectUrlMiddleware::__invoke(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 deprecation Deprecated: Aws\S3\PermanentRedirectMiddleware::__invoke(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 15:52:17 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "localhost",
        "port": 3306,
        "user": "sp6_dev",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "sp6_dev",
        "serverVersion": "8.0",
        "charset": "utf8"
    }
}
DEBUG 15:52:17 doctrine Executing statement: SELECT t0.id AS id_1, t0.setting_key AS setting_key_2, t0.setting_value AS setting_value_3, t0.setting_description AS setting_description_4 FROM settings t0 WHERE t0.setting_key = ? LIMIT 1 (parameters: {params}, types: {types})

                            
DEBUG 15:52:17 event Notified event "kernel.controller" to listener "App\EventListener\EshopVisibilityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventListener\\EshopVisibilityListener::onKernelController"
}
DEBUG 15:52:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:52:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:52:17 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 15:52:17 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController"
}
DEBUG 15:52:17 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AttributeSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AttributeSubscriber::onKernelController"
}
DEBUG 15:52:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
DEBUG 15:52:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 15:52:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 15:52:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 15:52:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
DEBUG 15:52:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://dev.siuntupaieska.lt/robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/dev.sendparcel.com/releases/22/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /robots.txt HTTP/1.1
Accept:            */*
Accept-Encoding:   gzip, br
Cdn-Loop:          cloudflare; loops=1
Cf-Connecting-Ip:  81.167.26.57
Cf-Ipcountry:      NO
Cf-Ray:            9fba1cbffbb749c5-OSL
Cf-Visitor:        {"scheme":"https"}
Connection:        Keep-Alive
Host:              dev.siuntupaieska.lt
User-Agent:        Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)
X-Forwarded-For:   81.167.26.57
X-Forwarded-Proto: https
X-Php-Ob-Level:    1



  at vendor/symfony-cmf/routing/src/ChainRouter.php:180
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:134)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/dev.sendparcel.com/releases/22/vendor/autoload_runtime.php')
     (public/index.php:5)