Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
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 117)
$this->called = true;
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
if ($e->isStarted()) {
$e->stop();
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
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 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 139)
*/
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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$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)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/vhosts/test.tillomeditalia.com/vendor/autoload_runtime.php')
in
httpdocs/index.php
(line 5)
<?php
use 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 106)
*/
public function matchRequest(Request $request)
{
$this->request = $request;
$ret = $this->match($request->getPathInfo());
$this->request = null;
return $ret;
}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 257)
if (!$matcher instanceof RequestMatcherInterface) {
// fallback to the default UrlMatcherInterface
return $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 111)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 117)
$this->called = true;
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
if ($e->isStarted()) {
$e->stop();
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
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 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 139)
*/
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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$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)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/vhosts/test.tillomeditalia.com/vendor/autoload_runtime.php')
in
httpdocs/index.php
(line 5)
<?php
use 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 05:41:25 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "2ef7f2" }, "request_uri": "https://test.tillomeditalia.com/_profiler/2ef7f2?panel=exception", "method": "GET" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:41:25 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
INFO 05:41:25 | doctrine |
Connecting with parameters {params} { "params": { "url": "<redacted>", "driver": "pdo_mysql", "host": "localhost", "port": 3306, "user": "tillomed_user", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": [], "dbname": "test_tillomeditalia_com_db", "serverVersion": "mariadb-5.5.68", "charset": "utf8" } } |
DEBUG 05:41:25 | doctrine |
Executing query: SELECT t0_.id AS id_0, t0_.yellow_alarm AS yellow_alarm_1, t0_.red_alarm AS red_alarm_2, t0_.avg_sell_cadence AS avg_sell_cadence_3, t0_.num_of_buy_dates AS num_of_buy_dates_4, t0_.last_order_date AS last_order_date_5, t0_.notes AS notes_6, t0_.disabled AS disabled_7, t0_.facility_id AS facility_id_8, t0_.product_id AS product_id_9 FROM til_join_table_facility_product t0_ LEFT JOIN til_facility t1_ ON t0_.facility_id = t1_.id ORDER BY t1_.name ASC { "sql": "SELECT t0_.id AS id_0, t0_.yellow_alarm AS yellow_alarm_1, t0_.red_alarm AS red_alarm_2, t0_.avg_sell_cadence AS avg_sell_cadence_3, t0_.num_of_buy_dates AS num_of_buy_dates_4, t0_.last_order_date AS last_order_date_5, t0_.notes AS notes_6, t0_.disabled AS disabled_7, t0_.facility_id AS facility_id_8, t0_.product_id AS product_id_9 FROM til_join_table_facility_product t0_ LEFT JOIN til_facility t1_ ON t0_.facility_id = t1_.id ORDER BY t1_.name ASC" } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.slug AS slug_2, t0.type AS type_3, t0.value AS value_4, t0.description AS description_5 FROM til_settings t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.slug AS slug_2, t0.type AS type_3, t0.value AS value_4, t0.description AS description_5 FROM til_settings t0 WHERE t0.slug = ? LIMIT 1", "params": { "1": "sells_last_import_date" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.slug AS slug_2, t0.type AS type_3, t0.value AS value_4, t0.description AS description_5 FROM til_settings t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.slug AS slug_2, t0.type AS type_3, t0.value AS value_4, t0.description AS description_5 FROM til_settings t0 WHERE t0.slug = ? LIMIT 1", "params": { "1": "sells_old_last_import_date" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0_.id AS id_0, t0_.import_from AS import_from_1, t0_.import_date AS import_date_2, t0_.document_type AS document_type_3, t0_.issue_date AS issue_date_4, t0_.week_number AS week_number_5, t0_.month_number AS month_number_6, t0_.document_number AS document_number_7, t0_.product_code AS product_code_8, t0_.atc_code AS atc_code_9, t0_.aic_code AS aic_code_10, t0_.product_description AS product_description_11, t0_.lot_number AS lot_number_12, t0_.quantity AS quantity_13, t0_.net_unit_price AS net_unit_price_14, t0_.box_quantity AS box_quantity_15, t0_.net_box_price AS net_box_price_16, t0_.net_price AS net_price_17, t0_.charged_price AS charged_price_18, t0_.client_category AS client_category_19, t0_.client_code AS client_code_20, t0_.client_ministerial_code AS client_ministerial_code_21, t0_.client_business_name AS client_business_name_22, t0_.client_address AS client_address_23, t0_.client_province AS client_province_24, t0_.client_city AS client_city_25, t0_.client_zip AS client_zip_26, t0_.client_region AS client_region_27, t0_.vat AS vat_28, t0_.order_number AS order_number_29, t0_.order_date AS order_date_30, t0_.ref_date AS ref_date_31, t0_.receiver_client_code AS receiver_client_code_32, t0_.receiver_client_ministerial_code AS receiver_client_ministerial_code_33, t0_.receiver_client_business_name AS receiver_client_business_name_34, t0_.receiver_client_address AS receiver_client_address_35, t0_.receiver_client_province AS receiver_client_province_36, t0_.receiver_client_city AS receiver_client_city_37, t0_.receiver_client_zip AS receiver_client_zip_38, t0_.receiver_client_region AS receiver_client_region_39, t0_.kam AS kam_40, t0_.extra AS extra_41, t0_.notes AS notes_42, t0_.email AS email_43, t0_.lot_expiration_date AS lot_expiration_date_44, t0_.vs_vi AS vs_vi_45, t0_.invoice_num AS invoice_num_46, t0_.division AS division_47, t0_.organization AS organization_48, t0_.material AS material_49, t0_.selling_unit AS selling_unit_50, t0_.tax AS tax_51, t0_.backup_quantity AS backup_quantity_52, t0_.backup_net_unit_price AS backup_net_unit_price_53, t0_.num_of_docs_control AS num_of_docs_control_54, t0_.control_docs_date AS control_docs_date_55, t0_.delivery_num AS delivery_num_56, t0_.delivery_date AS delivery_date_57, t0_.cost AS cost_58, t0_.cold AS cold_59, t0_.cig_number AS cig_number_60, t0_.invoice_voice AS invoice_voice_61, t0_.product_id AS product_id_62, t0_.hospital_id AS hospital_id_63, t0_.facility_id AS facility_id_64, t0_.user_id AS user_id_65 FROM til_sell t0_ WHERE t0_.import_date > ? AND t0_.import_date <= ? (parameters: {params}, types: {types}) { "sql": "SELECT t0_.id AS id_0, t0_.import_from AS import_from_1, t0_.import_date AS import_date_2, t0_.document_type AS document_type_3, t0_.issue_date AS issue_date_4, t0_.week_number AS week_number_5, t0_.month_number AS month_number_6, t0_.document_number AS document_number_7, t0_.product_code AS product_code_8, t0_.atc_code AS atc_code_9, t0_.aic_code AS aic_code_10, t0_.product_description AS product_description_11, t0_.lot_number AS lot_number_12, t0_.quantity AS quantity_13, t0_.net_unit_price AS net_unit_price_14, t0_.box_quantity AS box_quantity_15, t0_.net_box_price AS net_box_price_16, t0_.net_price AS net_price_17, t0_.charged_price AS charged_price_18, t0_.client_category AS client_category_19, t0_.client_code AS client_code_20, t0_.client_ministerial_code AS client_ministerial_code_21, t0_.client_business_name AS client_business_name_22, t0_.client_address AS client_address_23, t0_.client_province AS client_province_24, t0_.client_city AS client_city_25, t0_.client_zip AS client_zip_26, t0_.client_region AS client_region_27, t0_.vat AS vat_28, t0_.order_number AS order_number_29, t0_.order_date AS order_date_30, t0_.ref_date AS ref_date_31, t0_.receiver_client_code AS receiver_client_code_32, t0_.receiver_client_ministerial_code AS receiver_client_ministerial_code_33, t0_.receiver_client_business_name AS receiver_client_business_name_34, t0_.receiver_client_address AS receiver_client_address_35, t0_.receiver_client_province AS receiver_client_province_36, t0_.receiver_client_city AS receiver_client_city_37, t0_.receiver_client_zip AS receiver_client_zip_38, t0_.receiver_client_region AS receiver_client_region_39, t0_.kam AS kam_40, t0_.extra AS extra_41, t0_.notes AS notes_42, t0_.email AS email_43, t0_.lot_expiration_date AS lot_expiration_date_44, t0_.vs_vi AS vs_vi_45, t0_.invoice_num AS invoice_num_46, t0_.division AS division_47, t0_.organization AS organization_48, t0_.material AS material_49, t0_.selling_unit AS selling_unit_50, t0_.tax AS tax_51, t0_.backup_quantity AS backup_quantity_52, t0_.backup_net_unit_price AS backup_net_unit_price_53, t0_.num_of_docs_control AS num_of_docs_control_54, t0_.control_docs_date AS control_docs_date_55, t0_.delivery_num AS delivery_num_56, t0_.delivery_date AS delivery_date_57, t0_.cost AS cost_58, t0_.cold AS cold_59, t0_.cig_number AS cig_number_60, t0_.invoice_voice AS invoice_voice_61, t0_.product_id AS product_id_62, t0_.hospital_id AS hospital_id_63, t0_.facility_id AS facility_id_64, t0_.user_id AS user_id_65 FROM til_sell t0_ WHERE t0_.import_date > ? AND t0_.import_date <= ?", "params": { "1": "2023-04-28", "2": "2023-04-30" }, "types": { "1": 2, "2": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.slug AS slug_2, t0.type AS type_3, t0.value AS value_4, t0.description AS description_5 FROM til_settings t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.slug AS slug_2, t0.type AS type_3, t0.value AS value_4, t0.description AS description_5 FROM til_settings t0 WHERE t0.slug = ? LIMIT 1", "params": { "1": "sells_last_import_date" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing query: SELECT t0_.id AS id_0, t0_.name AS name_1, t0_.vat AS vat_2, t0_.address AS address_3, t0_.zip AS zip_4, t0_.email AS email_5, t0_.pec AS pec_6, t0_.sdi AS sdi_7, t0_.phone AS phone_8, t0_.fax AS fax_9, t0_.minister_code AS minister_code_10, t0_.head_group AS head_group_11, t0_.is_public AS is_public_12, t0_.lat AS lat_13, t0_.lng AS lng_14, t0_.city_id AS city_id_15, t0_.hospital_group_id AS hospital_group_id_16 FROM til_hospital t0_ WHERE t0_.is_public IS NULL { "sql": "SELECT t0_.id AS id_0, t0_.name AS name_1, t0_.vat AS vat_2, t0_.address AS address_3, t0_.zip AS zip_4, t0_.email AS email_5, t0_.pec AS pec_6, t0_.sdi AS sdi_7, t0_.phone AS phone_8, t0_.fax AS fax_9, t0_.minister_code AS minister_code_10, t0_.head_group AS head_group_11, t0_.is_public AS is_public_12, t0_.lat AS lat_13, t0_.lng AS lng_14, t0_.city_id AS city_id_15, t0_.hospital_group_id AS hospital_group_id_16 FROM til_hospital t0_ WHERE t0_.is_public IS NULL" } |
DEBUG 05:41:26 | doctrine |
Executing query: SELECT t0_.id AS id_0, t0_.name AS name_1, t0_.address AS address_2, t0_.zip AS zip_3, t0_.lat AS lat_4, t0_.lng AS lng_5, t0_.is_public AS is_public_6, t0_.is_abbandoned_ignored AS is_abbandoned_ignored_7, t0_.minister_code AS minister_code_8, t0_.city_id AS city_id_9, t0_.assigned_kam_id AS assigned_kam_id_10, t0_.hospital_id AS hospital_id_11 FROM til_facility t0_ WHERE t0_.hospital_id IS NULL ORDER BY t0_.name ASC LIMIT 50 { "sql": "SELECT t0_.id AS id_0, t0_.name AS name_1, t0_.address AS address_2, t0_.zip AS zip_3, t0_.lat AS lat_4, t0_.lng AS lng_5, t0_.is_public AS is_public_6, t0_.is_abbandoned_ignored AS is_abbandoned_ignored_7, t0_.minister_code AS minister_code_8, t0_.city_id AS city_id_9, t0_.assigned_kam_id AS assigned_kam_id_10, t0_.hospital_id AS hospital_id_11 FROM til_facility t0_ WHERE t0_.hospital_id IS NULL ORDER BY t0_.name ASC LIMIT 50" } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0_.id AS id_0, t0_.motivation AS motivation_1, t0_.date AS date_2, t0_.response AS response_3, t0_.status AS status_4, t0_.is_notified AS is_notified_5, t0_.user_id AS user_id_6 FROM til_request_holiday t0_ WHERE t0_.status = ? ORDER BY t0_.date DESC (parameters: {params}, types: {types}) { "sql": "SELECT t0_.id AS id_0, t0_.motivation AS motivation_1, t0_.date AS date_2, t0_.response AS response_3, t0_.status AS status_4, t0_.is_notified AS is_notified_5, t0_.user_id AS user_id_6 FROM til_request_holiday t0_ WHERE t0_.status = ? ORDER BY t0_.date DESC", "params": { "1": "insert" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing query: SELECT t0.id AS id_1, t0.object_id AS object_id_2, t0.datetime AS datetime_3, t0.type AS type_4, t0.old_value AS old_value_5, t0.new_value AS new_value_6, t0.old_notes AS old_notes_7, t0.new_notes AS new_notes_8, t0.sender_id AS sender_id_9 FROM til_edit_request t0 { "sql": "SELECT t0.id AS id_1, t0.object_id AS object_id_2, t0.datetime AS datetime_3, t0.type AS type_4, t0.old_value AS old_value_5, t0.new_value AS new_value_6, t0.old_notes AS old_notes_7, t0.new_notes AS new_notes_8, t0.sender_id AS sender_id_9 FROM til_edit_request t0" } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0_.id AS id_0, t0_.email AS email_1, t0_.name AS name_2, t0_.surname AS surname_3, t0_.password AS password_4, t0_.is_active AS is_active_5, t0_.is_admin_active AS is_admin_active_6, t0_.directory_path AS directory_path_7, t0_.one_time_code AS one_time_code_8, t0_.expiration_one_time_code AS expiration_one_time_code_9, t0_.is_email_notification_active AS is_email_notification_active_10, t0_.office_hours AS office_hours_11, t0_.is_alert_read AS is_alert_read_12, t0_.is_gdpr_sent AS is_gdpr_sent_13, t0_.role AS role_14, t0_.account_type_id AS account_type_id_15, t0_.supervisor_id AS supervisor_id_16 FROM til_user t0_ LEFT JOIN til_account_type t1_ ON t0_.account_type_id = t1_.id WHERE (t1_.level < 4) AND t0_.is_admin_active = 1 AND t1_.slug <> ? AND t0_.email <> ? ORDER BY t0_.surname ASC, t0_.name ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0_.id AS id_0, t0_.email AS email_1, t0_.name AS name_2, t0_.surname AS surname_3, t0_.password AS password_4, t0_.is_active AS is_active_5, t0_.is_admin_active AS is_admin_active_6, t0_.directory_path AS directory_path_7, t0_.one_time_code AS one_time_code_8, t0_.expiration_one_time_code AS expiration_one_time_code_9, t0_.is_email_notification_active AS is_email_notification_active_10, t0_.office_hours AS office_hours_11, t0_.is_alert_read AS is_alert_read_12, t0_.is_gdpr_sent AS is_gdpr_sent_13, t0_.role AS role_14, t0_.account_type_id AS account_type_id_15, t0_.supervisor_id AS supervisor_id_16 FROM til_user t0_ LEFT JOIN til_account_type t1_ ON t0_.account_type_id = t1_.id WHERE (t1_.level < 4) AND t0_.is_admin_active = 1 AND t1_.slug <> ? AND t0_.email <> ? ORDER BY t0_.surname ASC, t0_.name ASC", "params": { "1": "supervisor_mario", "2": "rporrati@rpgmultimedia.it" }, "types": { "1": 2, "2": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1746" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1746" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1746" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "33" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "33" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "33" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1926" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1926" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1926" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1844" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1844" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1844" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1748" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1748" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1748" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1348" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1348" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1348" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "2187" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "2187" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "2187" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "29" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "29" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "29" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1845" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1845" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1845" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1940" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1940" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1940" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1174" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1174" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1174" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1867" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1867" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1867" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "39" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "39" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "39" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "24" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "24" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "24" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "35" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "35" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "35" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "1481" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "1481" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "1481" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.last_update_date_time AS last_update_date_time_2, t0.is_terms_accepted AS is_terms_accepted_3, t0.is_news_accepted AS is_news_accepted_4, t0.user_id AS user_id_5 FROM til_privacy t0 WHERE t0.user_id = ?", "params": { "1": "816" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.country_code AS country_code_2, t0.phone AS phone_3, t0.fax AS fax_4, t0.mobile AS mobile_5, t0.address AS address_6, t0.zip AS zip_7, t0.other_city AS other_city_8, t0.other_province AS other_province_9, t0.user_id AS user_id_10, t0.city_id AS city_id_11, t0.profession_id AS profession_id_12, t0.department_id AS department_id_13 FROM til_profile t0 WHERE t0.user_id = ?", "params": { "1": "816" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.residue_rol AS residue_rol_2, t0.residue_holiday AS residue_holiday_3, t0.start_work_date AS start_work_date_4, t0.end_work_date AS end_work_date_5, t0.show_in_list AS show_in_list_6, t0.user_id AS user_id_7 FROM til_employee_data t0 WHERE t0.user_id = ?", "params": { "1": "816" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1746" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "52" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "73" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "33" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "2" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "12" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "29" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "42" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "63" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1926" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "59" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "78" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1844" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "54" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "62" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1748" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "50" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "72" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1348" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "36" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "51" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "76" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "2187" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "80" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "29" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "3" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "17" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "25" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "47" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "65" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1845" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "55" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "69" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1940" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "60" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "64" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1174" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "23" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "31" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "49" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "70" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1867" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "56" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "61" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "39" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "10" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "13" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "34" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "40" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "67" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "24" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "6" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "18" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "30" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "53" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "75" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "35" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "5" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "15" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "32" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "48" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "74" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "1481" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "38" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "41" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "66" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.value AS value_2, t0.user_id AS user_id_3 FROM til_presence_year t0 WHERE t0.user_id = ?", "params": { "1": "816" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.value AS value_3, t0.notes AS notes_4, t0.file_path_kam AS file_path_kam_5, t0.file_path_supervisor AS file_path_supervisor_6, t0.file_path_boss AS file_path_boss_7, t0.is_holiday_counter_active AS is_holiday_counter_active_8, t0.is_rol_counter_active AS is_rol_counter_active_9, t0.presence_year_id AS presence_year_id_10 FROM til_presence_month t0 WHERE t0.presence_year_id = ? ORDER BY t0.value ASC", "params": { "1": "35" }, "types": { "1": 2 } } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:41:26 | 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 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:41:26 | 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 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:41:26 | 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 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:41:26 | 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 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:41:26 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
Stack Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET https://www.test.tillomeditalia.com/.git/config" at vendor/symfony/http-kernel/EventListener/RouterListener.php:135 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) 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:29) at require_once('/var/www/vhosts/test.tillomeditalia.com/vendor/autoload_runtime.php') (httpdocs/index.php:5) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: No routes found for "/.git/config/". at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74 at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match() (vendor/symfony/routing/Matcher/UrlMatcher.php:106) at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest() (vendor/symfony/routing/Router.php:257) at Symfony\Component\Routing\Router->matchRequest() (vendor/symfony/http-kernel/EventListener/RouterListener.php:111) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) 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:29) at require_once('/var/www/vhosts/test.tillomeditalia.com/vendor/autoload_runtime.php') (httpdocs/index.php:5) |