Projet

Général

Profil

0005-debian-set-journald-log-level-to-INFO-29149.patch

Benjamin Dauvergne, 22 août 2020 23:55

Télécharger (922 octets)

Voir les différences:

Subject: [PATCH 5/5] debian: set journald log level to INFO (#29149)

DEBUG logs must go to a local file now.
 debian/debian_config_common.py | 1 +
 1 file changed, 1 insertion(+)
debian/debian_config_common.py
192 192
        warnings.warn('journald will not be used directly, please install python-systemd')
193 193
    else:
194 194
        LOGGING['handlers']['journald'] = {
195
            'level': 'INFO',
195 196
            'class': 'hobo.journal.JournalHandler',
196 197
            'filters': ['request_context'],
197 198
            'formatter': 'syslog',
198
-