{% extends 'base.html.twig' %} {% block title %}Détails du log - {{ log.action }}{% endblock %} {% block body %}

Détails du log

Retour à la liste
Informations principales
ID: #{{ log.id }}
Date: {{ log.formattedCreatedAt }}
Action: {{ log.action }}
Entité: {{ log.entity }} {% if log.entityId %} #{{ log.entityId }} {% endif %}
Niveau: {{ log.level }}
Description: {{ log.description ?? '-' }}
Informations techniques
Utilisateur: {{ log.userName }}
Adresse IP: {{ log.ipAddress ?? '-' }}
URL: {% if log.url %} {{ log.url }} {% else %} - {% endif %}
Méthode HTTP: {% if log.method %} {{ log.method }} {% else %} - {% endif %}
User Agent: {% if log.userAgent %} {{ log.userAgent }} {% else %} - {% endif %}
{% if log.data %}
Données supplémentaires
{{ log.data|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %} {% if log.entityId %}
Autres logs pour cette entité
{% endif %}
{% endblock %}