Logging support

This commit is contained in:
Yohann D'ANELLO 2020-02-24 18:18:44 +01:00
parent c8dd41c1d7
commit fd529a53c8
11 changed files with 279 additions and 19 deletions

14
apps/logs/apps.py Normal file
View file

@ -0,0 +1,14 @@
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class LogsConfig(AppConfig):
name = 'logs'
verbose_name = _('Logs')
def ready(self):
# noinspection PyUnresolvedReferences
import logs.signals