{% extends "base.html.twig" %} {% block title %}System settings - DCL Log Configuration{% endblock %} {% form_theme settingsForm with ['bootstrap_4_layout.html.twig', _self] %} {% block body %}

System Settings

{{ form_start(settingsForm) }} {% if(settingsForm.config is defined) %}
DCL Log Configuration

Log to Stream

Log to Database

Log to File

{% for row in settingsForm.config %} {% if (loop.index - 1) % 3 == 0 or loop.index == 1%} {% if loop.index != 1%}
{% endif %}
{% endif %}
{{ form_label(row) }} {{ form_widget(row) }} {{ form_help(row) }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endif %}

Keep in mind that the changes will take effect on next service restart. You can do it manually here.

{{ form_end(settingsForm) }}
{% endblock body %}