{% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block toolbar %} {% set queryLabel = collector.queries|length == 1 ? 'query' : 'queries' %} {% if collector.queries|length > 0 %} {% set icon %} {{ include('@BazingaGeocoder/Collector/icon.svg') }}
{% endset %} {% set text %} {% endset %} {% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url } %} {% endif %} {% endblock %} {% block menu %} {# This left-hand menu appears when using the full-screen profiler. #} {{ include('@BazingaGeocoder/Collector/icon.svg') }} Geocoder {% endblock %} {% block panel %}These queries are executed by a provider named "{{ provider }}".
Query | Locale | Result | Duration | ||
---|---|---|---|---|---|
# {{ loop.index }} | {{ query.queryString }} | {{ query.query.locale is not null ? query.query.locale : 'null' }} | {% if query.result.message is defined %} Exception {% else %} {{ dump(query.resultCount) }} Result(s) {% endif %} | {{ query.duration|number_format }} ms | |
{{ profiler_dump(query.query, maxDepth=1) }} | {% if query.result.message is defined %} | {{ profiler_dump(query.result, maxDepth=1) }} | {% else %}{{ profiler_dump(query.result, maxDepth=3) }} | {% endif %}
No queries were executed.