Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#2559 -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/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(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/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
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/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
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/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(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/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
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/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
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
| Level | Channel | Message |
|---|---|---|
| INFO 18:31:23 | deprecation |
User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm) {
"exception": {}
}
|
| INFO 18:31:23 | doctrine |
Connecting with parameters {params} {
"params": {
"use_savepoints": true,
"driver": "pdo_pgsql",
"idle_connection_ttl": 600,
"host": "postgresql-dbs-syd01-do-user-7766579-0.f.db.ondigitalocean.com",
"port": 25061,
"user": "doadmin",
"password": "<redacted>",
"driverOptions": [],
"defaultTableOptions": [],
"dbname": "spanelpro-pool",
"sslmode": "require",
"serverVersion": "17",
"charset": "utf8",
"application_name": "spanelpro-app"
}
}
|
| DEBUG 18:31:23 | doctrine |
Executing query: SELECT t0.id AS id_1, t0.enable_cdn AS enable_cdn_2, t0.cdn_endpoint AS cdn_endpoint_3, t0.cdn_access_key AS cdn_access_key_4, t0.cdn_secret_key AS cdn_secret_key_5, t0.cdn_bucket AS cdn_bucket_6, t0.cdn_region AS cdn_region_7, t0.cdn_public_url AS cdn_public_url_8, t0.backups_bucket AS backups_bucket_9, t0.backup_retention_days AS backup_retention_days_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.app_settings_id AS app_settings_id_13 FROM app_settings_cdn t0 LIMIT 1 {
"sql": "SELECT t0.id AS id_1, t0.enable_cdn AS enable_cdn_2, t0.cdn_endpoint AS cdn_endpoint_3, t0.cdn_access_key AS cdn_access_key_4, t0.cdn_secret_key AS cdn_secret_key_5, t0.cdn_bucket AS cdn_bucket_6, t0.cdn_region AS cdn_region_7, t0.cdn_public_url AS cdn_public_url_8, t0.backups_bucket AS backups_bucket_9, t0.backup_retention_days AS backup_retention_days_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.app_settings_id AS app_settings_id_13 FROM app_settings_cdn t0 LIMIT 1"
}
|
| INFO 18:31:23 | deprecation |
User Deprecated: Since symfony/var-exporter 7.3: Using ProxyHelper::generateLazyGhost() is deprecated, use native lazy objects instead. {
"exception": {}
}
|
| INFO 18:31:23 | deprecation |
User Deprecated: Since symfony/var-exporter 7.3: The "Symfony\Component\VarExporter\LazyGhostTrait" trait is deprecated, use native lazy objects instead. {
"exception": {}
}
|
| INFO 18:31:23 | app | DigitalOcean Spaces initialized successfully |
| DEBUG 18:31:23 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.type AS type_3, t0.provider AS provider_4, t0.description AS description_5, t0.enabled AS enabled_6, t0.host AS host_7, t0.port AS port_8, t0.username AS username_9, t0.password AS password_10, t0.database AS database_11, t0.api_url AS api_url_12, t0.api_key AS api_key_13, t0.api_secret AS api_secret_14, t0.config AS config_15, t0.metadata AS metadata_16, t0.last_tested AS last_tested_17, t0.test_passed AS test_passed_18, t0.created_at AS created_at_19, t0.updated_at AS updated_at_20, t0.project_id AS project_id_21 FROM integration t0 WHERE t0.type = ? AND t0.provider = ? AND t0.enabled = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.type AS type_3, t0.provider AS provider_4, t0.description AS description_5, t0.enabled AS enabled_6, t0.host AS host_7, t0.port AS port_8, t0.username AS username_9, t0.password AS password_10, t0.database AS database_11, t0.api_url AS api_url_12, t0.api_key AS api_key_13, t0.api_secret AS api_secret_14, t0.config AS config_15, t0.metadata AS metadata_16, t0.last_tested AS last_tested_17, t0.test_passed AS test_passed_18, t0.created_at AS created_at_19, t0.updated_at AS updated_at_20, t0.project_id AS project_id_21 FROM integration t0 WHERE t0.type = ? AND t0.provider = ? AND t0.enabled = ? LIMIT 1",
"params": {
"1": "ai",
"2": "anthropic",
"3": 1
},
"types": {
"1": 2,
"2": 2,
"3": 5
}
}
|
| DEBUG 18:31:23 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.type AS type_3, t0.provider AS provider_4, t0.description AS description_5, t0.enabled AS enabled_6, t0.host AS host_7, t0.port AS port_8, t0.username AS username_9, t0.password AS password_10, t0.database AS database_11, t0.api_url AS api_url_12, t0.api_key AS api_key_13, t0.api_secret AS api_secret_14, t0.config AS config_15, t0.metadata AS metadata_16, t0.last_tested AS last_tested_17, t0.test_passed AS test_passed_18, t0.created_at AS created_at_19, t0.updated_at AS updated_at_20, t0.project_id AS project_id_21 FROM integration t0 WHERE t0.type = ? AND t0.provider = ? AND t0.enabled = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.type AS type_3, t0.provider AS provider_4, t0.description AS description_5, t0.enabled AS enabled_6, t0.host AS host_7, t0.port AS port_8, t0.username AS username_9, t0.password AS password_10, t0.database AS database_11, t0.api_url AS api_url_12, t0.api_key AS api_key_13, t0.api_secret AS api_secret_14, t0.config AS config_15, t0.metadata AS metadata_16, t0.last_tested AS last_tested_17, t0.test_passed AS test_passed_18, t0.created_at AS created_at_19, t0.updated_at AS updated_at_20, t0.project_id AS project_id_21 FROM integration t0 WHERE t0.type = ? AND t0.provider = ? AND t0.enabled = ? LIMIT 1",
"params": {
"1": "ai",
"2": "openai",
"3": 1
},
"types": {
"1": 2,
"2": 2,
"3": 5
}
}
|
| DEBUG 18:31:23 | doctrine |
Executing query: SELECT a0_.id AS id_0, a0_.app_name AS app_name_1, a0_.public_url AS public_url_2, a0_.support_email AS support_email_3, a0_.app_description AS app_description_4, a0_.favicon_path AS favicon_path_5, a0_.logo_path AS logo_path_6, a0_.login_background_image AS login_background_image_7, a0_.footer_text AS footer_text_8, a0_.maintenance_message AS maintenance_message_9, a0_.company_name AS company_name_10, a0_.company_address AS company_address_11, a0_.company_phone AS company_phone_12, a0_.company_website AS company_website_13, a0_.company_email AS company_email_14, a0_.currency AS currency_15, a0_.timezone AS timezone_16, a0_.bug_auto_assignment_enabled AS bug_auto_assignment_enabled_17, a0_.bug_review_reassignment_enabled AS bug_review_reassignment_enabled_18, a0_.mcp_introspection_secret AS mcp_introspection_secret_19, a0_.created_at AS created_at_20, a0_.updated_at AS updated_at_21, a1_.id AS id_22, a1_.enable_matomo AS enable_matomo_23, a1_.matomo_site_url AS matomo_site_url_24, a1_.matomo_site_id AS matomo_site_id_25, a1_.enable_google_analytics AS enable_google_analytics_26, a1_.google_analytics_id AS google_analytics_id_27, a1_.custom_head_scripts AS custom_head_scripts_28, a1_.custom_body_scripts AS custom_body_scripts_29, a1_.meta_title AS meta_title_30, a1_.meta_description AS meta_description_31, a1_.meta_keywords AS meta_keywords_32, a1_.created_at AS created_at_33, a1_.updated_at AS updated_at_34, a2_.id AS id_35, a2_.enable_cdn AS enable_cdn_36, a2_.cdn_endpoint AS cdn_endpoint_37, a2_.cdn_access_key AS cdn_access_key_38, a2_.cdn_secret_key AS cdn_secret_key_39, a2_.cdn_bucket AS cdn_bucket_40, a2_.cdn_region AS cdn_region_41, a2_.cdn_public_url AS cdn_public_url_42, a2_.backups_bucket AS backups_bucket_43, a2_.backup_retention_days AS backup_retention_days_44, a2_.created_at AS created_at_45, a2_.updated_at AS updated_at_46, a3_.id AS id_47, a3_.theme AS theme_48, a3_.primary_color AS primary_color_49, a3_.secondary_color AS secondary_color_50, a3_.debug_mode AS debug_mode_51, a3_.allow_registration AS allow_registration_52, a3_.require_email_verification AS require_email_verification_53, a3_.session_timeout AS session_timeout_54, a3_.maintenance_mode AS maintenance_mode_55, a3_.created_at AS created_at_56, a3_.updated_at AS updated_at_57, a0_.default_bug_assignee_id AS default_bug_assignee_id_58, a1_.app_settings_id AS app_settings_id_59, a2_.app_settings_id AS app_settings_id_60, a3_.app_settings_id AS app_settings_id_61 FROM app_settings a0_ LEFT JOIN app_settings_analytics a1_ ON a0_.id = a1_.app_settings_id LEFT JOIN app_settings_cdn a2_ ON a0_.id = a2_.app_settings_id LEFT JOIN app_settings_system a3_ ON a0_.id = a3_.app_settings_id LIMIT 1 {
"sql": "SELECT a0_.id AS id_0, a0_.app_name AS app_name_1, a0_.public_url AS public_url_2, a0_.support_email AS support_email_3, a0_.app_description AS app_description_4, a0_.favicon_path AS favicon_path_5, a0_.logo_path AS logo_path_6, a0_.login_background_image AS login_background_image_7, a0_.footer_text AS footer_text_8, a0_.maintenance_message AS maintenance_message_9, a0_.company_name AS company_name_10, a0_.company_address AS company_address_11, a0_.company_phone AS company_phone_12, a0_.company_website AS company_website_13, a0_.company_email AS company_email_14, a0_.currency AS currency_15, a0_.timezone AS timezone_16, a0_.bug_auto_assignment_enabled AS bug_auto_assignment_enabled_17, a0_.bug_review_reassignment_enabled AS bug_review_reassignment_enabled_18, a0_.mcp_introspection_secret AS mcp_introspection_secret_19, a0_.created_at AS created_at_20, a0_.updated_at AS updated_at_21, a1_.id AS id_22, a1_.enable_matomo AS enable_matomo_23, a1_.matomo_site_url AS matomo_site_url_24, a1_.matomo_site_id AS matomo_site_id_25, a1_.enable_google_analytics AS enable_google_analytics_26, a1_.google_analytics_id AS google_analytics_id_27, a1_.custom_head_scripts AS custom_head_scripts_28, a1_.custom_body_scripts AS custom_body_scripts_29, a1_.meta_title AS meta_title_30, a1_.meta_description AS meta_description_31, a1_.meta_keywords AS meta_keywords_32, a1_.created_at AS created_at_33, a1_.updated_at AS updated_at_34, a2_.id AS id_35, a2_.enable_cdn AS enable_cdn_36, a2_.cdn_endpoint AS cdn_endpoint_37, a2_.cdn_access_key AS cdn_access_key_38, a2_.cdn_secret_key AS cdn_secret_key_39, a2_.cdn_bucket AS cdn_bucket_40, a2_.cdn_region AS cdn_region_41, a2_.cdn_public_url AS cdn_public_url_42, a2_.backups_bucket AS backups_bucket_43, a2_.backup_retention_days AS backup_retention_days_44, a2_.created_at AS created_at_45, a2_.updated_at AS updated_at_46, a3_.id AS id_47, a3_.theme AS theme_48, a3_.primary_color AS primary_color_49, a3_.secondary_color AS secondary_color_50, a3_.debug_mode AS debug_mode_51, a3_.allow_registration AS allow_registration_52, a3_.require_email_verification AS require_email_verification_53, a3_.session_timeout AS session_timeout_54, a3_.maintenance_mode AS maintenance_mode_55, a3_.created_at AS created_at_56, a3_.updated_at AS updated_at_57, a0_.default_bug_assignee_id AS default_bug_assignee_id_58, a1_.app_settings_id AS app_settings_id_59, a2_.app_settings_id AS app_settings_id_60, a3_.app_settings_id AS app_settings_id_61 FROM app_settings a0_ LEFT JOIN app_settings_analytics a1_ ON a0_.id = a1_.app_settings_id LEFT JOIN app_settings_cdn a2_ ON a0_.id = a2_.app_settings_id LEFT JOIN app_settings_system a3_ ON a0_.id = a3_.app_settings_id LIMIT 1"
}
|
| DEBUG 18:31:23 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.enabled AS enabled_2, t0.api_key AS api_key_3, t0.maxmind_license_key AS maxmind_license_key_4, t0.mode AS mode_5, t0.geoblock_countries AS geoblock_countries_6, t0.whitelist_ips AS whitelist_ips_7, t0.tested_at AS tested_at_8, t0.tested_ok AS tested_ok_9, t0.created_at AS created_at_10, t0.updated_at AS updated_at_11, t0.app_settings_id AS app_settings_id_12 FROM app_settings_security t0 WHERE t0.app_settings_id = ? (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.enabled AS enabled_2, t0.api_key AS api_key_3, t0.maxmind_license_key AS maxmind_license_key_4, t0.mode AS mode_5, t0.geoblock_countries AS geoblock_countries_6, t0.whitelist_ips AS whitelist_ips_7, t0.tested_at AS tested_at_8, t0.tested_ok AS tested_ok_9, t0.created_at AS created_at_10, t0.updated_at AS updated_at_11, t0.app_settings_id AS app_settings_id_12 FROM app_settings_security t0 WHERE t0.app_settings_id = ?",
"params": {
"1": 1
},
"types": {
"1": 1
}
}
|
| INFO 18:31:23 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "09c3d8"
},
"request_uri": "https://dev-eos.evolvepreneur.io/_profiler/09c3d8",
"method": "GET"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\MarkNonNavigationAsXhrSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\MarkNonNavigationAsXhrSubscriber::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AppTimezoneSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\AppTimezoneSubscriber::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | 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 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\FirewallSubscriber::onRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\FirewallSubscriber::onRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\TenantSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\TenantSubscriber::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventListener\ApiRequestTrackingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\ApiRequestTrackingListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventListener\DebugModeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\DebugModeListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\ContentSecurityPolicySubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\ContentSecurityPolicySubscriber::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\EnforceTwoFactorSubscriber::onRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\EnforceTwoFactorSubscriber::onRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 18:31:23 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 18:31:23 | 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 18:31:23 | 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 18:31:23 | 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 18:31:23 | 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 18:31:23 | 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"
}
|
| DEBUG 18:31:23 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.droplet_id AS droplet_id_2, t0.name AS name_3, t0.memory AS memory_4, t0.vcpus AS vcpus_5, t0.disk AS disk_6, t0.status AS status_7, t0.ipv4_address AS ipv4_address_8, t0.ipv6_address AS ipv6_address_9, t0.region AS region_10, t0.size AS size_11, t0.image AS image_12, t0.features AS features_13, t0.monthly_cost AS monthly_cost_14, t0.droplet_created_at AS droplet_created_at_15, t0.raw_data AS raw_data_16, t0.last_sync_at AS last_sync_at_17, t0.private_ip_address AS private_ip_address_18, t0.vpc_uuid AS vpc_uuid_19, t0.is_claude_worker AS is_claude_worker_20, t0.ssh_user AS ssh_user_21, t0.ssh_user_uid AS ssh_user_uid_22, t0.worker_status AS worker_status_23, t0.max_sessions AS max_sessions_24, t0.active_sessions AS active_sessions_25, t0.public_hostname AS public_hostname_26, t0.worker_role AS worker_role_27, t0.workspace_path AS workspace_path_28, t0.dev_domain AS dev_domain_29, t0.created_at AS created_at_30, t0.updated_at AS updated_at_31, t0.account_id AS account_id_32, t0.project_id AS project_id_33 FROM digitalocean_droplet t0 WHERE t0.is_claude_worker = ? (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.droplet_id AS droplet_id_2, t0.name AS name_3, t0.memory AS memory_4, t0.vcpus AS vcpus_5, t0.disk AS disk_6, t0.status AS status_7, t0.ipv4_address AS ipv4_address_8, t0.ipv6_address AS ipv6_address_9, t0.region AS region_10, t0.size AS size_11, t0.image AS image_12, t0.features AS features_13, t0.monthly_cost AS monthly_cost_14, t0.droplet_created_at AS droplet_created_at_15, t0.raw_data AS raw_data_16, t0.last_sync_at AS last_sync_at_17, t0.private_ip_address AS private_ip_address_18, t0.vpc_uuid AS vpc_uuid_19, t0.is_claude_worker AS is_claude_worker_20, t0.ssh_user AS ssh_user_21, t0.ssh_user_uid AS ssh_user_uid_22, t0.worker_status AS worker_status_23, t0.max_sessions AS max_sessions_24, t0.active_sessions AS active_sessions_25, t0.public_hostname AS public_hostname_26, t0.worker_role AS worker_role_27, t0.workspace_path AS workspace_path_28, t0.dev_domain AS dev_domain_29, t0.created_at AS created_at_30, t0.updated_at AS updated_at_31, t0.account_id AS account_id_32, t0.project_id AS project_id_33 FROM digitalocean_droplet t0 WHERE t0.is_claude_worker = ?",
"params": {
"1": 1
},
"types": {
"1": 5
}
}
|
| INFO 18:31:23 | deprecation |
User Deprecated: Since symfony/var-exporter 7.3: Using ProxyHelper::generateLazyGhost() is deprecated, use native lazy objects instead. {
"exception": {}
}
|
| INFO 18:31:23 | deprecation |
User Deprecated: Since symfony/var-exporter 7.3: Using ProxyHelper::generateLazyGhost() is deprecated, use native lazy objects instead. {
"exception": {}
}
|
| DEBUG 18:31:23 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.display_name AS display_name_3, t0.description AS description_4, t0.system_prompt AS system_prompt_5, t0.model_provider AS model_provider_6, t0.model_name AS model_name_7, t0.fallback_provider AS fallback_provider_8, t0.fallback_model AS fallback_model_9, t0.use_smart_routing AS use_smart_routing_10, t0.temperature AS temperature_11, t0.max_tokens AS max_tokens_12, t0.top_p AS top_p_13, t0.frequency_penalty AS frequency_penalty_14, t0.presence_penalty AS presence_penalty_15, t0.personality AS personality_16, t0.response_style AS response_style_17, t0.button_color AS button_color_18, t0.header_color AS header_color_19, t0.bubble_icon_type AS bubble_icon_type_20, t0.bubble_icon AS bubble_icon_21, t0.position AS position_22, t0.avatar_url AS avatar_url_23, t0.welcome_message AS welcome_message_24, t0.button_tooltip AS button_tooltip_25, t0.window_background_color AS window_background_color_26, t0.message_bubble_color AS message_bubble_color_27, t0.show_typing_indicator AS show_typing_indicator_28, t0.show_sources AS show_sources_29, t0.require_email AS require_email_30, t0.voice_enabled AS voice_enabled_31, t0.tts_enabled AS tts_enabled_32, t0.tts_voice AS tts_voice_33, t0.enabled_areas AS enabled_areas_34, t0.context_messages AS context_messages_35, t0.confidence_threshold AS confidence_threshold_36, t0.code AS code_37, t0.personality_profile AS personality_profile_38, t0.tone_rules AS tone_rules_39, t0.default_autonomy_level AS default_autonomy_level_40, t0.enabled_modules AS enabled_modules_41, t0.avatar_path AS avatar_path_42, t0.tagline AS tagline_43, t0.backstory AS backstory_44, t0.introduction_text AS introduction_text_45, t0.is_system AS is_system_46, t0.sort_order AS sort_order_47, t0.is_default AS is_default_48, t0.is_active AS is_active_49, t0.created_at AS created_at_50, t0.updated_at AS updated_at_51 FROM chatbot_profile t0 WHERE t0.is_default = ? AND t0.is_active = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.display_name AS display_name_3, t0.description AS description_4, t0.system_prompt AS system_prompt_5, t0.model_provider AS model_provider_6, t0.model_name AS model_name_7, t0.fallback_provider AS fallback_provider_8, t0.fallback_model AS fallback_model_9, t0.use_smart_routing AS use_smart_routing_10, t0.temperature AS temperature_11, t0.max_tokens AS max_tokens_12, t0.top_p AS top_p_13, t0.frequency_penalty AS frequency_penalty_14, t0.presence_penalty AS presence_penalty_15, t0.personality AS personality_16, t0.response_style AS response_style_17, t0.button_color AS button_color_18, t0.header_color AS header_color_19, t0.bubble_icon_type AS bubble_icon_type_20, t0.bubble_icon AS bubble_icon_21, t0.position AS position_22, t0.avatar_url AS avatar_url_23, t0.welcome_message AS welcome_message_24, t0.button_tooltip AS button_tooltip_25, t0.window_background_color AS window_background_color_26, t0.message_bubble_color AS message_bubble_color_27, t0.show_typing_indicator AS show_typing_indicator_28, t0.show_sources AS show_sources_29, t0.require_email AS require_email_30, t0.voice_enabled AS voice_enabled_31, t0.tts_enabled AS tts_enabled_32, t0.tts_voice AS tts_voice_33, t0.enabled_areas AS enabled_areas_34, t0.context_messages AS context_messages_35, t0.confidence_threshold AS confidence_threshold_36, t0.code AS code_37, t0.personality_profile AS personality_profile_38, t0.tone_rules AS tone_rules_39, t0.default_autonomy_level AS default_autonomy_level_40, t0.enabled_modules AS enabled_modules_41, t0.avatar_path AS avatar_path_42, t0.tagline AS tagline_43, t0.backstory AS backstory_44, t0.introduction_text AS introduction_text_45, t0.is_system AS is_system_46, t0.sort_order AS sort_order_47, t0.is_default AS is_default_48, t0.is_active AS is_active_49, t0.created_at AS created_at_50, t0.updated_at AS updated_at_51 FROM chatbot_profile t0 WHERE t0.is_default = ? AND t0.is_active = ? LIMIT 1",
"params": {
"1": 1,
"2": 1
},
"types": {
"1": 5,
"2": 5
}
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://dev-eos.evolvepreneur.io/sitemap.xml"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->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/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/spanel/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/sitemap.xml/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/sitemap.xml/')
(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(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->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/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/spanel/vendor/autoload_runtime.php')
(public/index.php:5)
|