diff options
| author | J08nY | 2017-06-27 16:42:33 +0200 |
|---|---|---|
| committer | J08nY | 2017-06-27 17:01:50 +0200 |
| commit | 9fce6946a176a36fb83a0d21016175518ef02709 (patch) | |
| tree | be8ca53e1fda6a7b583f68e992771a338dd47854 | |
| parent | fc0e59c5c33779a1674fe3ddfbcc72d131036c21 (diff) | |
| download | mailman-9fce6946a176a36fb83a0d21016175518ef02709.tar.gz mailman-9fce6946a176a36fb83a0d21016175518ef02709.tar.zst mailman-9fce6946a176a36fb83a0d21016175518ef02709.zip | |
| -rw-r--r-- | src/mailman/commands/docs/conf.rst | 1 | ||||
| -rw-r--r-- | src/mailman/config/schema.cfg | 4 | ||||
| -rw-r--r-- | src/mailman/rest/tests/test_systemconf.py | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/mailman/commands/docs/conf.rst b/src/mailman/commands/docs/conf.rst index f465aab53..fbc7f651b 100644 --- a/src/mailman/commands/docs/conf.rst +++ b/src/mailman/commands/docs/conf.rst @@ -53,6 +53,7 @@ key, along with the names of the corresponding sections. [logging.http] path: mailman.log [logging.locks] path: mailman.log [logging.mischief] path: mailman.log + [logging.plugin] path: plugin.log [logging.root] path: mailman.log [logging.runner] path: mailman.log [logging.smtp] path: smtp.log diff --git a/src/mailman/config/schema.cfg b/src/mailman/config/schema.cfg index cae95a07f..a55c37ff4 100644 --- a/src/mailman/config/schema.cfg +++ b/src/mailman/config/schema.cfg @@ -276,6 +276,7 @@ debug: no # - http -- Internal wsgi-based web interface # - locks -- Lock state changes # - mischief -- Various types of hostile activity +# - plugin -- Plugin logs # - runner -- Runner process start/stops # - smtp -- Successful SMTP activity # - smtp-failure -- Unsuccessful SMTP activity @@ -313,6 +314,9 @@ level: info [logging.mischief] +[logging.plugin] +path: plugin.log + [logging.runner] [logging.smtp] diff --git a/src/mailman/rest/tests/test_systemconf.py b/src/mailman/rest/tests/test_systemconf.py index 42802068c..fe5d951a8 100644 --- a/src/mailman/rest/tests/test_systemconf.py +++ b/src/mailman/rest/tests/test_systemconf.py @@ -166,6 +166,7 @@ class TestSystemConfiguration(unittest.TestCase): 'logging.http', 'logging.locks', 'logging.mischief', + 'logging.plugin', 'logging.root', 'logging.runner', 'logging.smtp', |
