Skip to content
Snippets Groups Projects
Commit 4f2e898c authored by kaiyou's avatar kaiyou
Browse files

Make the logging level configurable

parent d4c14e14
No related branches found
No related tags found
No related merge requests found
......@@ -17,13 +17,13 @@ handlers:
loggers:
synapse:
level: INFO
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
synapse.storage.SQL:
# beware: increasing this to DEBUG will make synapse log sensitive
# information such as access tokens.
level: INFO
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
root:
level: INFO
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
handlers: [console]
......@@ -15,6 +15,7 @@ services:
- SYNAPSE_SERVER_NAME=my.matrix.host
- SYNAPSE_REPORT_STATS=no
- SYNAPSE_ENABLE_REGISTRATION=yes
- SYNAPSE_LOG_LEVEL=INFO
- POSTGRES_PASSWORD=changeme
volumes:
# You may either store all the files in a local folder
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment